mirror of
https://github.com/BreizhHardware/ntfy_alerts.git
synced 2026-01-18 16:37:28 +01:00
Update NGINX config with the new route
This commit is contained in:
@@ -6,6 +6,7 @@ Feel free to contribute and to fork !
|
|||||||
# Python ntfy.py
|
# Python ntfy.py
|
||||||
## Description:
|
## Description:
|
||||||
This script is used to watch the github repos and send a notification to the ntfy server when a new release is published.
|
This script is used to watch the github repos and send a notification to the ntfy server when a new release is published.
|
||||||
|
|
||||||
It can aloso watch Docker Hub repos and do the same as github.
|
It can aloso watch Docker Hub repos and do the same as github.
|
||||||
## Utilisation:
|
## Utilisation:
|
||||||
auth and ntfy_url are required to be set as environment variables.
|
auth and ntfy_url are required to be set as environment variables.
|
||||||
|
|||||||
21
nginx.conf
21
nginx.conf
@@ -35,5 +35,26 @@ http {
|
|||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
}
|
}
|
||||||
|
location /app_docker_repo {
|
||||||
|
proxy_pass http://127.0.0.1:5000;
|
||||||
|
proxy_set_header Host $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;
|
||||||
|
}
|
||||||
|
location /watched_docker_repos {
|
||||||
|
proxy_pass http://127.0.0.1:5000;
|
||||||
|
proxy_set_header Host $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;
|
||||||
|
}
|
||||||
|
location /delete_docker_repo {
|
||||||
|
proxy_pass http://127.0.0.1:5000;
|
||||||
|
proxy_set_header Host $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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user