mirror of
https://github.com/xzeldon/zeldon-site.git
synced 2025-01-31 14:27:27 +03:00
10 lines
147 B
Nginx Configuration File
10 lines
147 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
|
|
# path to files for serve
|
|
root /usr/share/nginx/html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
} |