All checks were successful
ci/woodpecker/tag/web_uploadimage Pipeline was successful
8 lines
130 B
Nginx Configuration File
8 lines
130 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
} |