I think I got it. Some of the default main server settings from httpd.conf were commented out: #ServerName www.example.com:80 I changed this to ServerName mydomain.ltd:8080by torchsonghq - How to...
Yes, I'm using nginx as reverse proxy. Here's my nginx.conf user apache; #change to the same user apache runs as worker_processes 2; #change to the number of your CPUs/Cores worker_rlimit_nofile 8192; error_log /var/log/nginx/error.log; pid /var/run/nginx.pid; events { worker_connections 1024; use epoll; accept_mutex off; } http { server_names_hash_bucket_size 64; iby torchsonghq - How to...
What I've noticed is that it is following the "Main" server setting of httpd/conf/httpd.conf - how can I disable the main server's setting then make the server follow nginx's root config files?by torchsonghq - How to...
Thank you for reply. Unfortunately, that didn't help. Also I separated the root command as I'm making multiple hosts.by torchsonghq - How to...
Hi. I've followed the guide here: http://olex.openlogic.com/wazi/2011/add-a-nginx-reverse-proxy-to-your-lamp-setup/ So my nginx virtualhost file looks like this: server { listen 80; server_name mydomain.ltd www.mydomain.ltd; access_log off; error_log off; location / { proxy_pass http://127.0.0.1:8080; } location ~* ^.+\.(htm|html|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|bz2|pdfby torchsonghq - How to...
![]() |
![]() |
![]() |
![]() |
|