mirror of
https://github.com/YunoHost-Apps/FastAPI_ynh.git
synced 2024-09-03 18:36:00 +02:00
25 lines
736 B
Nginx Configuration File
25 lines
736 B
Nginx Configuration File
# Redirect root path to the generated Swagger documentation page
|
|
location = __PATH__/ {
|
|
rewrite __PATH__/ __PATH__/docs;
|
|
}
|
|
|
|
location __PATH__/ {
|
|
# https://github.com/benoitc/gunicorn/blob/master/examples/nginx.conf
|
|
|
|
# this is needed if you have file import via upload enabled
|
|
client_max_body_size 100M;
|
|
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Protocol $scheme;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Scheme $scheme;
|
|
|
|
proxy_read_timeout 30;
|
|
proxy_send_timeout 30;
|
|
proxy_connect_timeout 30;
|
|
proxy_redirect off;
|
|
|
|
proxy_pass http://127.0.0.1:__PORT__/;
|
|
}
|