Skip to content

Commit dbb509c

Browse files
committed
added nginx.conf file
1 parent ef64fa1 commit dbb509c

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

nginx.conf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
server {
2+
listen 8080;
3+
server_name localhost;
4+
5+
location / {
6+
root /usr/share/nginx/html;
7+
index index.html;
8+
try_files $uri $uri/ /index.html; # Required for single-page applications
9+
}
10+
}

0 commit comments

Comments
 (0)