riot-web/nginx/conf.d/default.conf

19 lines
440 B
Plaintext
Raw Normal View History

2021-09-28 13:15:34 +02:00
server {
listen 80;
listen [::]:80;
server_name localhost;
2021-09-28 14:24:54 +02:00
root /usr/share/nginx/html;
2021-09-29 11:32:12 +02:00
index index.html;
2021-09-28 14:24:54 +02:00
# Set no-cache for the index.html only so that browsers always check for a new copy of Element Web.
location = /index.html {
2021-09-28 13:15:34 +02:00
add_header Cache-Control "no-cache";
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
}