9 lines
151 B
Nginx Configuration File
9 lines
151 B
Nginx Configuration File
|
server {
|
||
|
listen 80;
|
||
|
server_name _;
|
||
|
|
||
|
location / {
|
||
|
root /frontend_fue/dist;
|
||
|
index index.html index.htm;
|
||
|
}
|
||
|
}
|