mirror of
https://github.com/MarcZierle/photo-log-frontend.git
synced 2025-04-04 11:44:37 +00:00
9 lines
152 B
Nginx Configuration File
9 lines
152 B
Nginx Configuration File
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
server_name _;
|
|
|
|
root /home/www/dist;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|