Files
YABA/Web/nginx.conf
Carl Tibule 7ad384fb63
All checks were successful
ci/woodpecker/tag/web_uploadimage Pipeline was successful
Updated nginx.conf
2024-04-03 23:07:35 -05:00

9 lines
169 B
Nginx Configuration File

server {
listen 80;
server_name *.bookmarks.iwanaga.moe;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}