okoestner
(Okoestner)
January 26, 2021, 3:54pm
1
I am building up a server at my home for running some of my LAMP stack based applications. I will want to have some of my applications available from the internet.
So I am wondering if I should run an NGINX based reverse proxy on my server that routes traffic to the specific container? Or should I let the traffix be routed directly from the internet into the container?
Appreciate any thoughts on that from you!
imdebdut
(Debdut Chakraborty)
January 27, 2021, 7:57am
2
Using nginx as a reverse proxy will probably be the easier of those two. I do have a guide (completely docker based), let me know if you need one.
1 Like
okoestner
(Okoestner)
January 27, 2021, 8:40am
3
Thanks Debdut for your answer. I would really appreciate if you could share that guide with me.
Thanks in advance!
okoestner
(Okoestner)
January 31, 2021, 1:08pm
5
I am currently working on setting up the environment as you described it in that tutorial. Thanks so far for your support…
The proxy works. But how to setup the network architecture?
Hi!
I am running a container setup for a reerse proxy configuration where one container is the nginx reverse proxy and another one is the letsencrypt container (following https://linuxhandbook.com/nginx-reverse-proxy-docker ).
Behind the reverse proxy I want to host multiple LAMP stack based web applications.
Question is whether all LAMP stacks should / need to be in the same network as the two containers managing the incoming traffic?
From different advisories I learned that the different LA…