mirror of
https://github.com/cupcakearmy/old.nicco.io.git
synced 2025-02-22 10:19:23 +00:00
9 lines
125 B
Nginx Configuration File
9 lines
125 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
try_files $uri /index.html;
|
|
}
|
|
} |