* Dynamically load Element Web modules in Docker entrypoint Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Drop environment for PR runs Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
32 lines
909 B
Plaintext
32 lines
909 B
Plaintext
server {
|
|
listen ${ELEMENT_WEB_PORT};
|
|
listen [::]:${ELEMENT_WEB_PORT};
|
|
server_name localhost;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
# 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
|
|
|
|
location = /index.html {
|
|
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 {
|
|
root /tmp/element-web-config;
|
|
add_header Cache-Control "no-cache";
|
|
}
|
|
location /modules {
|
|
alias /tmp/element-web-modules;
|
|
}
|
|
# redirect server error pages to the static page /50x.html
|
|
#
|
|
error_page 500 502 503 504 /50x.html;
|
|
}
|
|
|