mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 15:46:44 +00:00
22 lines
540 B
Plaintext
22 lines
540 B
Plaintext
# nginx server configuration for apimanager
|
|
|
|
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
|
|
server_name apimanager;
|
|
|
|
location / {
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
# enable this if and only if you use HTTPS
|
|
# proxy_set_header X-Forwarded-Proto https;
|
|
proxy_set_header Host $http_host;
|
|
proxy_redirect off;
|
|
proxy_pass http://127.0.0.1:8000;
|
|
}
|
|
|
|
location /static {
|
|
alias /var/www/apimanager/static-collected;
|
|
}
|
|
}
|