All checks were successful
ci/woodpecker/tag/web_uploadimage Pipeline was successful
9 lines
169 B
Nginx Configuration File
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;
|
|
}
|
|
} |