cjvt-valency/nginx.conf

9 lines
151 B
Nginx Configuration File
Raw Normal View History

2019-05-04 16:12:05 +00:00
server {
listen 80;
server_name _;
location / {
root /frontend_fue/dist;
index index.html index.htm;
}
}