Listo para produccion

This commit is contained in:
2021-12-16 01:00:27 -03:00
parent 8ac3179b35
commit cf64b2d040
11 changed files with 57 additions and 526 deletions

26
nginx.conf Normal file
View File

@@ -0,0 +1,26 @@
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
gzip on;
gzip_types *;
gzip_static on;
expires 7d;
add_header Pragma "public";
add_header Cache-Control "public";
}