cjvt-valency/nginx.conf
2019-05-04 18:12:05 +02:00

9 lines
151 B
Nginx Configuration File

server {
listen 80;
server_name _;
location / {
root /frontend_fue/dist;
index index.html index.htm;
}
}