Skip to main content

All Questions

Tagged with
0 votes
0 answers
9 views

How to set-up Nginx conf to not pick Alphabetic order incase URL doesn't match reques

Wasn't sure how to word out the title but i have multiple docker server running wp/nginx Now we have a conf with a block for 80 and 443 for every site in the conf.d dir and in Cloudflare point the ip ...
Dean Michael's user avatar
1 vote
1 answer
60 views

ISPconfig/Nginx/wordpress to nginx proxy manager | wordpress using permalinks/postname

I am migrating my wordpress site from Ispconfig/Apache to Ispconfig/Nginx and introducing Nginx proxy manager in the mix. The problem seems to be the following: htaccess is not enabled in nginx are ...
Arch's user avatar
  • 11
0 votes
0 answers
14 views

Docker certbot trouble after relocating data-root

Because of my Docker images/containers filling up my root partition, I've been trying to move the data-root directory of my Docker installation to a different location (current: /usr/lib/docker; ...
MPA's user avatar
  • 103
0 votes
1 answer
133 views

Use NGINX to serve as both webhost + direct subdomain request to dockerserver:port

First, I struggled hard with the title. I've been trying back and forth, googling like mad and the resources I find are most likely way to complicated for me. But I find it so unbelievable that it's ...
Plankt0n's user avatar
1 vote
0 answers
200 views

SSL certificates not being generated with Certbot for Nginx when using Docker

If I understand this correctly what you are required to do is to have a web server being hosted at a specific domain and then execute the certbot command with specific arguments. I have created a ...
Zoumath's user avatar
  • 11
0 votes
0 answers
97 views

Configure a Raspbery Pi Nextcloud local server to run https with Docker containers

I'm trying to set up a Nextcloud server on my local nextwork using a Raspberry Pi. To do so, I used 3 docker images: nextcloud, posgresql and nginx. But even if I want to use this cloud only within my ...
Daniel Lavallée's user avatar
0 votes
2 answers
423 views

Nginx-proxy seems to ignore server context

Premise In the past days I setup a home server running Mastodon with Docker. I already have a Nextcloud instance running on a Raspberry so now I'm trying to make both available thru dedicated ...
Gianluca's user avatar
0 votes
1 answer
604 views

Nginx proxy_pass with custom variable

I have a question regarding the proxy_pass and dynamic subdomains. on my server, I have a site_block which looks like this: upstream mydockersite{ server 127.0.0.1:8081; } server { ...
DevMan's user avatar
  • 101
1 vote
1 answer
863 views

Error 503 Backend fetch failed Varnish Docker

Server Information as follows Plesk Control Panel CentOS 7 Operating System Nginx Proxy running on port 80 Apache running on port 7080 Magento Website Elastic Search Redis Cache CSF Firewall I ...
David Buik's user avatar
0 votes
1 answer
569 views

Docker Nextcloud behind nginx with proxy_pass not working

i tried to pass the nextcloud docker with apache through nginx with a subdomain. But i still recieve the index.html from the main site. server { listen 80 default_server; ...
v.montag's user avatar
1 vote
1 answer
4k views

Nginx Proxy Manager: Can you use single IP address (no hostname) and different ports or paths to forward to different docker container applications?

I do not have any hostnames like something.com to use. I only have the IP address of my server for access. Is there a way to configure Nginx Proxy Manager so when you request http://<ip_address>:...
jag959's user avatar
  • 11
0 votes
1 answer
1k views

nginx: http to https not working on chrome

I've got this nginx configuration to redirect http to https: # http redirects to https server { listen 80 default_server; server_name _; return 301 https://$host$request_uri; } server { ...
Andrius's user avatar
  • 607
2 votes
1 answer
6k views

Installing Kali Linux in Docker and accessing it's GUI over the browser

so I'm pretty new to docker and all that stuff. I would like to install Kali Linux as a Docker container and access it's GUI from the browser. How do I do that? I use Portainer as a GUI for managing ...
zer0's user avatar
  • 21
0 votes
1 answer
1k views

How can I use GitLab under a relative URL on docker?

I'm using gitlab-ce on docker. These are my system specifications. A container of GitLab is gitlab/gitlab-ce. The web frontend is using external NGINX. GitLab is mounted under /git. I read the the ...
elda's user avatar
  • 1
0 votes
1 answer
92 views

What values can you put inside nginx.conf when using it as a reverse proxy in a dockerized app, and does it have to change for production deployment?

upstream loadbalancer { server 172.17.0.1:5001 weight=6; server 172.17.0.1:5002 weight=4; } server { location / { proxy_pass http://loadbalancer; }} Can we use 172.17.0.1 as IP in a dockerized ...
Sayaman's user avatar
  • 231

15 30 50 per page
1
2 3 4 5