nginx: serve default presentation

This commit is contained in:
chandi 2023-04-03 11:45:12 +02:00
parent 81b02de14a
commit 6b5d8c853d

View File

@ -38,6 +38,11 @@ server {
return 302 /rooms/$1; return 302 /rooms/$1;
} }
# serve default.pdf from /www/
location = /default.pdf {
try_files $uri =404;
}
location / { location / {
proxy_pass http://greenlight:3000; proxy_pass http://greenlight:3000;
proxy_set_header Host $host; proxy_set_header Host $host;