All checks were successful
gitea/video-server-frontend/pipeline/head This commit looks good
15 lines
275 B
Plaintext
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;
|
|
}
|
|
} |