Compose und Quadlets brauchen unterschiedliche nginx-Configs: - Compose: proxy_pass http://app:8080 - Quadlets: proxy_pass http://systemd-visitcounter-app:8080 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
205 B
Text
9 lines
205 B
Text
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
proxy_pass http://systemd-visitcounter-app:8080;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
}
|
|
}
|