Re: Nginx with MySQL doesnt log fail to authtenticate in logs
Or is this not possible as I am using it as a reverse proxy and the actual logs I am after are on the server that is running the application?
View Articlenginx keeps redirecting to welcome page
I am using the following config:server {listen 80;server_name 192.168.1.10;location /shutter {proxy_pass http://192.168.1.10:8989;proxy_set_header Host $host;proxy_set_header X-Real-IP...
View ArticleRe: nginx keeps redirecting to welcome page
Maybe the application needs to be told it is running on port 80 instead of 8989, or you need to add a directive location block for / (root) because you only have a /shutter location block and nothing...
View ArticleNGINX as revproxy cached failover solution
Hi,I'm trying to setup NGINX as a reverse proxy, cached fail over solution - similar to Newrelic's 'Always Online' feature. So far, I have it working, but now how I'd like.What I'd like is for the...
View ArticleSpeed up perl by loading modules into memory?
Hi,I'm trying to get my perl scripts speeds up with nginx. We include quite a few perl modules - so I'm wondering if we can load them into memory, to speed up script requests. Here is a post I've...
View ArticleFastCGI Cache /purge/ resulting in 404 and no catch purging
I'm encountering an issue with my server being unable to purge content using the nginx helper plugin. I'm using the code below, which shou;ld purge correctly using the nginx purge module, but whenever...
View ArticleRe: FastCGI Cache /purge/ resulting in 404 and no catch purging
I'm unable to edit my original post, but the contents of the bottom .conf file had a missing } that I accidentally removed while formatting this post. It should read:# inside hhvm.conflocation ~...
View ArticleHow to redirect port on static ip>
Hello. Im kind of noob here so sorry if my question seems dumb to you.I am hosting a gps server traccar using a linux server. It works like charm. The only problem im facing right now is that the...
View Articlenginx-1.8.0 on centos5.4 not work
hi there,When I start nginx-1.8.0 on centos 5.4, it cant found work processes, it's very puzzled. But when I compile the source code, it doesnt report any error.Does nginx-1.8.0 is not compatible with...
View ArticleHow to limit HTTP/2 connections per IP?
From the documentation of ngx_http_limit_conn_module:>In HTTP/2 and SPDY, each concurrent request is considered a separate connection.So is there a way limit HTTP/2 connections, not requests?Also,...
View ArticleNginx cache noob question
While going through the documentation here https://www.nginx.com/blog/inside-nginx-how-we-designed-for-performance-scale/ I found that Nginx loads "cache helper processes" if caching is enabled.Does...
View ArticleRe: generate an htpasswd file without having Apache tools installed
Hi.Just in case someone will step on it too.'perl -le 'print crypt("password", "salt")' is a root cause for situation when you can input any random sequence after entering valid password. Like,...
View ArticleHow to change host
Hi everyone, first of all I'm not engineer, technician, programmer...I have installed nginx from source on my laptop, this is my .conf file :#user nobody;worker_processes 1;#error_log...
View Articlenginx run on centos 7.1
Does anybody run nginx on centos 7.1?%cpu is much higher than on other systems?I run nginx-1.8.0 and nginx-1.2.7 on centos7.1, I find %cpu nginx-1.2.7 on centos 5.4 is much higher on centos7.1.Does...
View ArticleRe: Speed up perl by loading modules into memory?
Anyone? Surely there has to be some way of loading the Perl modules into memory on Nginx, so that they are ready for any perl script to use? (like we can do in mod_perl)
View ArticleRe: Speed up perl by loading modules into memory?
We've extensively experimented with this option but without a proper Perl side cgi module this is not going to improve much, your best bet is to use a ramdrive for the whole perl environment and a...
View ArticleRe: Speed up perl by loading modules into memory?
Hi,Thanks for the response :) That went right over my head! I'll pass it onto my tech friend, and see what he makes of it :)Thanks again!Andy
View ArticleSame URL fails when there are query parameters
When I browse to www.mywebsite.com/lib/auth/index.php the page displays the way I want it.However, once I introduce query or url parameters...
View ArticleServer redirect without rewrite rules in Nginx config
Hello,we are planning to use Nginx for static websites hosting generated by Jekyll. Sites are generated and deployed directly from GIT by "not trusted" users. "Not trusted" means they are trusted...
View ArticleRe: Server redirect without rewrite rules in Nginx config
This can be done with Lua but a better question would be; is this file contents going to change alot and/or if the file exists does it need to continually be tested for its existence?Any file IO is...
View Article