You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
984 B
34 lines
984 B
server {
|
|
listen 127.0.0.1:${ELEMENT_WEB_PORT};
|
|
listen [::1]:${ELEMENT_WEB_PORT};
|
|
server_name localhost;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
# Set no-cache for the version, config, i18n, 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
|
|
|
|
location = /index.html {
|
|
add_header Cache-Control "no-cache";
|
|
}
|
|
location = /version {
|
|
add_header Cache-Control "no-cache";
|
|
}
|
|
location /i18n/ {
|
|
add_header Cache-Control "no-cache";
|
|
}
|
|
|
|
# covers config.json and config.hostname.json requests as it is prefix.
|
|
location /config {
|
|
root /tmp/element-web-config;
|
|
add_header Cache-Control "no-cache";
|
|
}
|
|
location /modules {
|
|
alias /modules;
|
|
}
|
|
# redirect server error pages to the static page /50x.html
|
|
#
|
|
error_page 500 502 503 504 /50x.html;
|
|
}
|
|
|