Merge pull request #40 from nyarau/main

Remove hardcoded dns resolver in nginx configs
This commit is contained in:
Bnyro 2024-06-07 21:28:16 +02:00 committed by GitHub
commit bf44099e14
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 8 deletions

View File

@ -27,7 +27,5 @@ http {
keepalive_timeout 65;
resolver 127.0.0.11 ipv6=off valid=10s;
include /etc/nginx/conf.d/*.conf;
}

View File

@ -1,14 +1,15 @@
proxy_cache_path /tmp/pipedapi_cache levels=1:2 keys_zone=pipedapi:4m max_size=2g inactive=60m use_temp_path=off;
upstream backend {
server piped:8080;
}
server {
listen 80;
server_name BACKEND_HOSTNAME;
set $backend "http://piped:8080";
location / {
proxy_cache pipedapi;
proxy_pass $backend;
proxy_pass http://backend;
proxy_http_version 1.1;
proxy_set_header Connection "keep-alive";
}

View File

@ -1,11 +1,12 @@
upstream frontend {
server pipedfrontend:80;
}
server {
listen 80;
server_name FRONTEND_HOSTNAME;
set $backend "http://pipedfrontend:80";
location / {
proxy_pass $backend;
proxy_pass http://frontend;
proxy_http_version 1.1;
proxy_set_header Connection "keep-alive";
}