Template for a new Smaug project
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

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;
}
}