Skip to content

Commit 4660a18

Browse files
authored
Add basic nginx server configuration
1 parent 55f4640 commit 4660a18

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

nginx.conf

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

0 commit comments

Comments
 (0)