All Questions
26 questions
0
votes
0
answers
173
views
Running Jitsi inside Docker on Plesk behind NGINX reverse proxy fails
after 5 hours of spending time to configure Jitsi on my Plesk server inside Docker, I need to give up and ask you — sorry for that.
First, I've followed the tutorial here: https://jitsi.github.io/...
0
votes
1
answer
92
views
NGINX x-forwarded-proto not working
I have an ASP.NET app hosted in a Docker container, with a NGINX reverse proxy, hosted on a VPS. When running in production, the x-forwarded-proto header isn't being passed.
From what I understand, ...
0
votes
0
answers
67
views
Subdomains only work sometimes when accessing homeserver in local network
i'm in the process of setting up a little homeserver for my family on a 1L pc. Its running debian and a couple of docker containers like immich, jellyfin and paperless-ngx. The server should be ...
0
votes
1
answer
706
views
How to logrotate official nginx docker image running by podman
I started official nginx image in podman under root with command:
sudo podman run --name nginx \
... \
-v /var/log/nginx:/var/log/nginx \
docker.io/library/nginx:latest
Logging working ok, but ...
0
votes
2
answers
999
views
How to suppress nginx worker process notices?
Note: Logging is disabled but the notices still occur!
I want a clean log that only shows errors for my Docker containers but nginx is just flooding the command line with noise even though I disable ...
3
votes
1
answer
370
views
docker run cap-drop=net_bind_service still has nginx running on the port 80
docker run --rm --cap-drop=net_bind_service --publish 8080:80 --name nginx nginx
ps --forest -fC nginx
UID PID PPID C STIME TTY TIME CMD
root 449870 449847 0 12:38 ? ...
0
votes
1
answer
437
views
E: Version '1.14.0-0ubuntu1.9' for 'nginx' was not found
FROM ubuntu:bionic
ENV NGINX_VERSION 1.14.0-0ubuntu1.9
RUN apt-get update && apt-get install -y curl
RUN apt-get update && apt-get install -y nginx=$NGINX_VERSION
CMD ["nginx&...
1
vote
1
answer
661
views
Use nginx as reverse proxy for all Docker containers
I'm running Docker on my Raspberry Pi 4 with some containerized web apps and I want all traffic to go through nginx as reverse proxy.
My problem is that I can access the Docker container ports from ...
1
vote
1
answer
948
views
docker-compose and nginx: always getting 127.0.0.1 as client IP
I've created a Docker image which contains nginx server (manually installed, not using the nginx docker image). Wherever I access the web server from, I always see 127.0.0.1 as client IP address. I ...
0
votes
1
answer
1k
views
symlink doen't works with nginx and php-fpm and docker
I run a wordpress site in local wiht docker, and in a plugin I send a GET request for a style.css file, which is a symlink, and it doesn't work, it answer a 404 not found
I don't think the probleme is ...
1
vote
1
answer
1k
views
Second reverse proxy subdomain gives me weird SSL and upstream errors
My current situation is that I have an ubuntu server running docker. In that docker I run NGINX as reverse proxy, this works well for portainer, but when I try to add a second subdomain, with the same ...
0
votes
0
answers
164
views
How to setup local server on Linux for testing Dokku?
I'm new to Dokku and nginx server and I'm trying to set up server locally on Linux Ubuntu 20.04 for testing purpose instead of using one such as Hetzner (Cloud) or DigitalOcean (which already contains ...
0
votes
0
answers
218
views
cant run react nginx on port 443 and 80 both are in used
I have react, nodejs app and dockerize them.
frontend running with Nginx on port 80 and 443 on my local docker-machine.
when I run the docker-compose command on my VPS centos it throws an error that ...
0
votes
1
answer
153
views
Nextcloud container can't be accessed
I'm trying to create a nextcloud setup in a debian 10 VM with https and mysql and docker-compose but when I acces https://cloud.example.org my browser says it can't be reached. If I acces the link ...
0
votes
1
answer
4k
views
mDNS Services are not reachable in fritzbox network
i have a raspberry pi with multiple services running (e.g. Openhab, mosquitto, ...).
each service should be locally reachable via a local subdomain (openhab.core.local, mosquitto.core.local, ...)
Of ...