Nginx does not route traffic to https
This is my nginx conf user nginx; worker_processes auto; error_log /var/log/nginx/error.log notice; pid /run/nginx.pid; # Load dynamic modules. See /usr/share/doc/nginx/README.dynamic. include...
View ArticleAssistance with Setting Up NGINX Load Balancing for a Website
Hello Everyone, I'm having some trouble appropriately establishing NGINX as a load balancer for a web application that I'm working on. I want to split up the traffic equally among three backend servers...
View Articlebackup stays active
i have an upstream clause with two servers. one is the primary and the other is the backup. upstream Service { server 127.0.0.1:8106; server 127.0.0.1:8100 backup; } periodically, the primary server...
View ArticleNginx ERR_CONNECTION_RESET
Hi, I have a WordPress site on Ubuntu 24.04 with Nginx 1.24.0 as web server software. The site is behind a NetworkSolutions load balancer which handles the SSL cert. I am running into a...
View Articlereturn 404 not show my custom error_page
I hope in the ".xxx.net" site, if the domain name is a specific "a.xxx.net", it will return 404 with my custom 404 page(error_page conf). But according to the following configuration, what I see is...
View ArticleDouble Escaping in $ssl_client_s_dn
I have a client certificate which has non English characters in the subject, when I use the attribute $ssl_client_s_dn of ngx_http_ssl_module the value is escaped twice. actual value =...
View Articlehtml does not display photo
nginx is running Ok on my Raspberry PI server. In my www directory, I have html and images directories, with html being the root for my website of johnrose.mywire.org. When I double click the...
View ArticleRe: html does not display photo
A clarification I've also tried https://johnrose.mywire.org/summer as I'm using certbot for johnrose.mywire.org and certbot has created appropriate encrypting info for johnrose.mywire.org
View ArticleRe: html does not display photo
The appropriate server block for johnrose.mywire.org is: # Virtual Host configuration for johnrose.mywire.org # # You can move that to a different file under sites-available/ and symlink that # to...
View ArticleUnable to start nginx after SSL configuration
nginx is configured with ssl module nginx version: nginx/1.14.1 built by gcc 8.2.1 20180905 (Red Hat 8.2.1-3) (GCC) built with OpenSSL 1.1.1 FIPS 11 Sep 2018 (running with OpenSSL 1.1.1k FIPS 25 Mar...
View ArticleSlow performance using nginx as reverse proxy
Hi, I'm the new one ;-) I use nginx as a reverse proxy in the following configuration: Ubuntu 22.04, nginx 1.18.0, access to two web services on host A and host B, which are accessible via...
View Article