Skip to content

Commit cc2b141

Browse files
Create nginx.evolution.conf
1 parent b5b131c commit cc2b141

File tree

1 file changed

+14
-0
lines changed
  • nginx.evolution.confserver { listen 80; server_name _; root /usr/share/nginx/html; index index.html; location / { try_files $uri

1 file changed

+14
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
server {
2+
listen 80;
3+
server_name _;
4+
root /usr/share/nginx/html;
5+
index index.html;
6+
7+
location / { try_files $uri /index.html; }
8+
9+
# No uses "must-revalidate" en 'expires'; ponlo como header:
10+
add_header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0" always;
11+
add_header Pragma "no-cache" always;
12+
add_header Expires "0" always;
13+
expires off;
14+
}

0 commit comments

Comments
 (0)