helm-charts/matrix-synapse/files/well-known/nginx.conf

16 lines
284 B
Nginx Configuration File
Raw Normal View History

server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
add_header Access-Control-Allow-Origin "*";
root /usr/share/nginx/html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}