Re: switching nginx-apache to using SSL
should i do it in section nginx 1.1 in ssl.conf in folder in conf.d
View ArticleRe: Nginx stops sending request body when upstream server consuming body...
Hi j, I found something interesting, when I set: proxy_request_buffering off; proxy_buffering off; Ngnix always proxied about 10M data. But when I set : proxy_request_buffering on; proxy_buffering off;...
View ArticleRe: switching nginx-apache to using SSL
You simply have to switch the NGINX endpoint to 443 and the proper SSL configuration. The part between NGINX and Apache stays the same (proxy_pass to port 80 of Apache). If you also want to secure the...
View Articlelatest version for raspberry pi.
Given that i would need 1.15.2 to enable brotli is there any way to manually compile the latest version for my rpi and compile the brotli module among the standard default modules?
View Articlenginx proxy_pass https
hello i would like to configure my nginx server to be able to make cache via https in direction of a apache server with DNS name but i think it makes only redirection and cache doesnt work my...
View ArticleRe: nginx proxy_pass https
First of all, whether something issues redirections or actually proxies some other site is easy to tell by hitting F12 in your favourite browser and checking the network requests. With your...
View ArticleRe: Nginx stops sending request body when upstream server consuming body...
Out of curiosity, I set up a minimal scenario to reproduce your effect. I put this segment into my http section of nginx.conf: server { listen 127.0.0.1:8080; client_body_temp_path /tmp/nginx;...
View ArticleNginx rewrite not working as expected
Here directories structure http://localhost -> /usr/local/nginx/web/webroot http://localhost/sess8283737/wordpress -> /usr/local/nginx/wordpress http://localhost/sess244737/phpmyadmin->...
View ArticleRe: Nginx rewrite not working as expected
Below block working file http://192.168.112.132/sess454/wordpress If index.php file just have echo "index"; If there actual wordpress files then it redirect to http://192.168.112.132/wordpress But I...
View ArticleRe: Nginx stops sending request body when upstream server consuming body...
Hi j, Thanks very much for your reply! I configured my Nginx with your configuration, then I run netcat to check received data as you suggested. As a result I did see 30M data are sent to 8081. But I...
View ArticleRe: Nginx stops sending request body when upstream server consuming body...
That's reassuring in a way :-) It sounds to me you are trying with HTTP/1.1 something you would normally do with HTTP/2. When the server sends a response (and a status code), NGINX may rightfully stop...
View ArticleRe: Nginx rewrite not working as expected
It's a bit hard to understand what you are really trying to do. I am guessing it may be something along the lines of this: map $realURI $handler { "~*/sess.*[.]php$" "_php";...
View ArticleRe: Nginx stops sending request body when upstream server consuming body...
Hi j, Yes, Jetty can send data back after it received all data, but the reasons why I want to use current design are 1. No buffering on server side 2. Performance would be much better if sending and...
View ArticleRe: Nginx rewrite not working as expected
I have added whole conf below and URI is http://192.168.112.132/sess1234/wordpress In log I'm getting "/a$handler/b$realURI"; why variable are empty not sure may be regex not match...
View ArticleSetting up wordpress with reverse proxy
Hello everyone, I have a problem loading a website developed in wordpress. Currently nginx is used to make a reverse proxy and to display the web under the domain demo.aspor.cl. The domain points to...
View ArticleAuthentification of clients
Hello, I have a Nging to Forward Proxy. I want auto authent clients requests with dedicated account manage by me. So, clients don't know never this dedicated acccount. => Just, they send their...
View ArticleNo access to nginx server from www
I installed a LEMP server on an odroid c2 (LEMP=Nginx, mariadb, phpmyadmin, php-fpm et wordpress). Eveything is woking in my home local network but i cannot access server from outside my local network....
View ArticleRe: nginx proxy_pass https
thx for your reply effectivly ,now it works , i have my proxy_path file on my nginx server in front which contain the file cache of my apache like this /data/nginx/0/2B/xxxxxx but my website is still...
View ArticleRe: No access to nginx server from www
It sounds to me like one of these things fail (1) The public IP address of your home network changes because of DSL/whatever reconnects, but this is not reflected in the A record of your DNS entry for...
View Article