Reviewed-on: #1 Co-authored-by: sandre <perso@sebastienandre.com> Co-committed-by: sandre <perso@sebastienandre.com>
16 lines
206 B
Nginx Configuration File
16 lines
206 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name _;
|
|
|
|
#root /app/Front;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location /api {
|
|
include proxy_params;
|
|
proxy_pass http://localhost:5001;
|
|
}
|
|
}
|