dc/client/nginx/default.conf

8 lines
109 B
Plaintext
Raw Normal View History

2023-07-13 11:44:05 +00:00
server {
listen 3000;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}