You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
201 B
13 lines
201 B
3 years ago
|
server {
|
||
|
listen 3000;
|
||
|
server_name _;
|
||
|
|
||
|
root /var/www/;
|
||
|
index index.html;
|
||
|
|
||
|
# Send all single page app paths to index.html
|
||
|
location / {
|
||
|
try_files $uri /index.html;
|
||
|
}
|
||
|
}
|