Skip to main content

All Questions

Tagged with
1 vote
0 answers
582 views

Docker portainer + nginx + vpn

I have a docker install that is running portainer and nginx as a proxy so subdomain.XXXXX.xyz redirects on port 80 to the port the Container is running in. this part is working correctly but I am ...
IcePops's user avatar
  • 11
0 votes
0 answers
246 views

Docker Containers not accessible outside of LAN

Overview: I have Docker running several containers on an rack server running Ubuntu Server 18.04. Most of these containers provide a service that is accessible through a browser on a port other than ...
bzanchi's user avatar
1 vote
1 answer
1k views

can't reach nginx port with netcat

I have this simple nginx config file: server { listen 4000; location / { root /usr/share/nginx/html; index index.html index.htm; try_files $uri $uri/ /index.html =404; } } nginx ...
Simon Ernesto Cardenas Zarate's user avatar
2 votes
1 answer
4k views

Docker: nginx-proxy through openvpn tunnel

I am trying to use DigitalOcean VPS as a openVPN server to access services (e.g. nextcloud) hosted on my home network through subdomains (e.g. nextcloud.example.com). I have set up the following: [...
Svarto's user avatar
  • 135
2 votes
2 answers
150 views

Routing docker conainter to path using port 80

I have a docker image that I can access via domain.com:8080/ from any computer. But I cant get it redirect to domain.com/service/ UPDATED: found my answer, see below.
mjh's user avatar
  • 21
1 vote
1 answer
1k views

Redirect web socket connections to newly created docker container with nginx

I created a Docker image which exposes a certain port, and listens for a single web socket connection. Is it possible to configure nginx in a way, so that for each new incoming web socket connection, ...
muffel's user avatar
  • 535