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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
767 B
Plaintext
Raw Normal View History

2021-09-28 11:15:34 +00:00
server {
listen 80;
listen [::]:80;
server_name localhost;
2021-09-28 12:24:54 +00:00
root /usr/share/nginx/html;
2021-09-29 09:32:12 +00:00
index index.html;
2021-09-28 12:24:54 +00:00
# Set no-cache for the version, config and index.html
# so that browsers always check for a new copy of Element Web.
# NB http://your-domain/ and http://your-domain/? are also covered by this
2021-09-28 12:24:54 +00:00
location = /index.html {
2021-09-28 11:15:34 +00:00
add_header Cache-Control "no-cache";
}
location = /version {
add_header Cache-Control "no-cache";
}
# covers config.json and config.hostname.json requests as it is prefix.
location /config {
add_header Cache-Control "no-cache";
}
2021-09-28 11:15:34 +00:00
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
}