mirror of
https://github.com/caronc/apprise-api.git
synced 2024-12-14 10:50:49 +01:00
37 lines
851 B
Plaintext
37 lines
851 B
Plaintext
|
|
||
|
# The backend API server
|
||
|
upstream apprise_backend {
|
||
|
server backend:8000 fail_timeout=0;
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
listen 80;
|
||
|
server_name _;
|
||
|
charset utf-8;
|
||
|
|
||
|
# Main Website
|
||
|
location / {
|
||
|
include uwsgi_params;
|
||
|
proxy_set_header Host $http_host;
|
||
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||
|
proxy_pass http://apprise_backend;
|
||
|
}
|
||
|
|
||
|
# Static Content
|
||
|
location /s/ {
|
||
|
root /usr/share/nginx/html;
|
||
|
index index.html;
|
||
|
}
|
||
|
|
||
|
# 404 error handling
|
||
|
error_page 404 /404.html;
|
||
|
|
||
|
# redirect server error pages to the static page /50x.html
|
||
|
error_page 500 502 503 504 /50x.html;
|
||
|
location = /50x.html {
|
||
|
root /usr/share/nginx/html;
|
||
|
}
|
||
|
}
|