video-server-frontend/default.conf
Jose134 71b9cb8f49
All checks were successful
gitea/video-server-frontend/pipeline/head This commit looks good
added default.conf
2024-08-11 03:04:18 +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;
}
}