Skip to content

Commit def5929

Browse files
committed
🔧 chore[nginx]: add initial Nginx configuration for front-end server
1 parent cc5ed3c commit def5929

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

‎front-end/.nginx/nginx.conf

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

0 commit comments

Comments
 (0)