How to use nginx to inspect body before sending response to client GET request
Hi, I am looking for a way to use nginx in order to inspect a response body and then return the response to the client's GET request based on the result of inspection. I have investigated the sub...
View ArticleCache Invalidation
When a user visits a webpage the HTML/CSS/JS normally gets cached on the device. This is fine but when one of those files is updated on the server how is the device supposed to know to download the new...
View ArticleReverse Proxy for a tp-link router redirects 192.168.0.1
I'm trying to transform http requests from my home router to secure my home network i've already routed http requests for transmission server to https I tried to do same with my AP, but it redirects to...
View ArticleMore Detailed Error logging on Failure to use PHP GD Library Function
Been posting about it here https://github.com/Intervention/image/issues/926 . I am using Laradock with PHP-FPM and Nginx. Each time I use the GD library to manipulate images with Laravel and Image...
View ArticleRe: More Detailed Error logging on Failure to use PHP GD Library Function
Well, I found out it was a lack of memory and or execution or time out time. So now laravel.ini has date.timezone=UTC display_errors=Off log_errors=On ; Maximum amount of memory a script may consume...
View ArticleRe: More Detailed Error logging on Failure to use PHP GD Library Function
Realized GD was still not processing. Had it on imagemagick post memory update. So issue not solved and better logging still needed. Also error 500 with Imagick with larger images by the way. So the...
View ArticleDinamyc ip based reverse proxy
Hi guys, Im new using nginx , I would like to try the reverse proxy feature. I need to achieve this: Lets supose my nginx server is at 10.1.1.254 , I would like to forward my request according to url...
View ArticleRe: Dinamyc ip based reverse proxy
I make some improvements: using following server block: server { listen 8888; server_name modem; location ~ /(.*) { proxy_pass http://$1; } } It seems to be working but something is missing. I can see...
View ArticleMail reverse proxy with SSL/TLS
I have several small local HTTP services running. To access them from outside I have a nginx reverse proxy running which adds SSL(TLS) to these services, so they can only be accessed via HTTPS...
View ArticleRe: Dinamyc ip based reverse proxy
Other thing ... It works if I use a hardcoded ip, like this : server { listen 8888; server_name tozed; location / { proxy_pass http://100.65.36.95; } } And in the broser I do: http:8888/tozed It brings...
View ArticleNginx set via certbot is not working
I install Nginx with certbot lets encrypt ssl. most of the configuration done by certbot. I use https://www.ssllabs.com/ssltest/ to check my ssl and its working. I am having problem that my domain...
View ArticleRe: Nginx set via certbot is not working
When I test with /etc/nginx/conf.d$ curl -I mobile.niyazi.com I get error as shown below: curl: (7) Failed to connect to mobile.niyazi.com port 80: Connection timed out
View ArticleRe: Nginx set via certbot is not working
Also my /etc/host shows this: 127.0.0.1 localhost 127.0.1.1 niyazi-virtual-machine # The following lines are desirable for IPv6 capable hosts ::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0...
View ArticleProblem setting up a simple reverse proxy
I'm a Nginx noob and trying to set up just a simple reverse proxy to secure my IP camera which doesn't support SSH natively. I have installed Nginx in my Raspberry Pi (Raspbian OS) and Nginx seems to...
View ArticleNginx is not working in Docker 18.09.1 as reverse proxy
Hello! I am trying to deploy Rocket.Chat in Docker 18.09.1 UCP 3.1.2 env. I am deploying in a stack. I wrote the compose file and run it in other envs before with no issues. In the compose file I am...
View ArticleBest VPN for Nginx, Your Opnion
Hello, everyone does anyone know which VPN will really work with Nginx. I just checked the review about ExpressVPN here: https://www.allbestvpn.com/expressvpn-review/ seems one of the best and fast VPN...
View Articlenginx proxy_passing http requests to a https only minio server that has...
CONFIG: https://paste.ngx.cc/d2 does NOT work. no matter what I am doing. have re-studied all the official docs, nobody on freenode NGINX was able to give any suggestions, stackoverflow, rest google...
View ArticleA way to include request id in error log?
Greetings, All! I'm looking for a way to include request id in error log message text. This way I'll be able to correlate access log with error log (access log uses custom format and already includes...
View ArticleMultiple OCS responders
Hi! I use two-way SSL in my Nginx server and have three different chains of trusted client certificates. All client certificate chains have own OCSP responder. How can I configure multiple OCSP...
View ArticleRe: Multiple OCSP responders
uv Wrote: ------------------------------------------------------- > Hi! > > I use two-way SSL in my Nginx server and have three different chains > of trusted client certificates. All client...
View Article