diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..584311d --- /dev/null +++ b/nginx.conf @@ -0,0 +1,23 @@ +server { + listen 80; + listen [::]:80; + server_name localhost default_server; + client_max_body_size 200m; + + location / { + if ($request_filename ~* .*\.(?:htm|html)$) { + add_header Cache-Control "no-store"; + } + root /usr/share/nginx/html; + try_files $uri @index ; + } + + location @index { + add_header Cache-Control "no-store" ; + root /usr/share/nginx/html; + index index.html index.htm; + try_files $uri/index.html /index.html; + } + + error_page 405 =200 $uri; +}