Skip to content

Commit 8a06b85

Browse files
author
dodo
committed
Add nginx
1 parent 1b88d78 commit 8a06b85

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

nginx/nginx.conf

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
server {
2+
listen 3000;
3+
client_max_body_size 5M;
4+
5+
location / {
6+
alias /usr/share/nginx/html/;
7+
try_files $uri $uri/ /index.html;
8+
}
9+
}

0 commit comments

Comments
 (0)