swave-frontend/default.conf
José Manuel a7e1c99a65
Some checks failed
gitea/swave-frontend/pipeline/head There was a failure building this commit
Initial commit
2024-10-02 22:56:10 +02:00

15 lines
275 B
Plaintext

server {
listen 80;
root /var/www/video_server_frontend/browser;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}