15 lines
176 B
Nginx Configuration File
15 lines
176 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name _;
|
|
|
|
root /app/Front;
|
|
index index.html;
|
|
|
|
location /api {
|
|
include proxy_params;
|
|
proxy_pass http://localhost:5001;
|
|
}
|
|
}
|