added default.conf
All checks were successful
gitea/video-server-frontend/pipeline/head This commit looks good

This commit is contained in:
Jose134 2024-08-11 03:02:22 +02:00
parent 69cdcefc1c
commit 71b9cb8f49

15
default.conf Normal file
View File

@ -0,0 +1,15 @@
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;
}
}