i don't understand why you said that is not the good conf file is used ? how do you know this ?by zuckbin - Nginx Mailing List - English
i forgot to say that i used pound on my server before to send traffic to nginx Maybe, there is a conflict with itby zuckbin - Nginx Mailing List - English
curl -i "http://www.aaa.com/" HTTP/1.1 301 Moved Permanently Server: nginx Date: Tue, 04 Mar 2014 13:25:24 GMT Content-Type: text/html Content-Length: 178 Connection: keep-alive Keep-Alive: timeout=5 Location: http://www.aaa.com/ <html> <head><title>301 Moved Permanently</title></head> <body bgcolor="white"> <center><h1by zuckbin - Nginx Mailing List - English
i got this error The page isn't redirecting properly in firebug i can see this many times: GET www.aaa.com 301 Moved Permanently aaa.com it seem this is not redirect wellby zuckbin - Nginx Mailing List - English
hi, got multiples server block for different domains, but it seem for fastcgi_param PHP_VALUE; they are in conflict all together here an exemple: server{ server_name aaa; ... location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; include fastcgi_params; } }by zuckbin - Nginx Mailing List - English
i try this and it doesn't work for me. maybe because i got some custom urls in vbseo. and why all my urls are with httpS ?! boring...by zuckbin - Nginx Mailing List - English
hi, i try to convert theses rules from apache for vbseo vbulletin, but got 404 errors How to convert theses rules for nginx ? RewriteEngine On RewriteBase /forum/ RewriteRule ^[^/]+/.+-([0-9]+)\.html$ vbseo.php?vbseourl=showthread.php&t=$1 RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 RewriteCond %{REQUEST_URI} !(admby zuckbin - Nginx Mailing List - English
hi, i want to do a 301 redirect on all my alias domain for a domain but i stuck in an infinite loop! server{ listen 80; server_name www.aaa.com www.aa.com ... return 301 http://www.bbb.com$request_uri; } server{ listen 80; server_name www.bbb.com ... .... } how to solve this ? thanks, byeby zuckbin - Nginx Mailing List - English
Hi, I really don't know to solve this: http://forum.proxmox.com/threads/17680-nginx-apache I got a 504 Gateway time-out error I use proxmox as hypervisor, inside a CT, i want to use nginx as reverse proxy for static content I got apache listen on port 8080 and nginx on 80, when i browse my url, i got a 504 gateway time-out I'm lost... thank you for your help ++by zuckbin - Nginx Mailing List - English
hi, i got elastcisearch on my webserver, and would like to acces via http on port 9200 for plugins, but only want to give access on port 9200 on all domains/ip for a restricted user, so user can't destroy my index. i know how to restrict only on localhost, but n ow i can't use plugins webbrowser base script. how to do this ? restrict access with password for all port 9200 connectionsby zuckbin - How to...
Hi, i use nginx as a proxy for apache on Gentoo to deliver only static contents When i try to acces http://myhost/nginx_status i got an error: Not Found The requested URL /nginx_status was not found on this server. nginx -V nginx version: nginx/1.2.1 TLS SNI support enabled configure arguments: --prefix=/usr --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error_logby zuckbin - Nginx Mailing List - English
Problem solved, it was a php issue, not nginx issue. Sorry!by zuckbin - Nginx Mailing List - English
Hi, I use symlink on files, but nginx got error 404 on files. I can access the file like this (no error): http://static.xxx.tld/kvr2wery235cd57uio457azd4a5Tf78sR/2012/20126190.pdf but not like this http://static.xxx.tld/dlpdf/24052012w/20127063.pdf this link is a symlink to this file http://static.xxx.tld/kvr2wery235cd57uio457azd4a5Tf78sR/2012/20126190.pdf Why the serveur said thby zuckbin - Nginx Mailing List - English
ok, can i do this ? server { listen ip:80; server_name yourserver.com; root /srv/http/nginx/yourserver.com; access_log logs/yourserver.com.access.log; location / { index index.html; charset utf-8; } } } server { listen ip:80; server_name static.staticby zuckbin - Nginx Mailing List - English
What is the server block ?by zuckbin - Nginx Mailing List - English
Hi, How to serve static content on static domain cookieless. I use ngix to serve static content then apache to dynamic content. Want to serve on static.mydomain.com all static content: jpeg, css, js, ... Here my actual conf: server { listen 80; client_max_body_size 50M; server_name www.mydoamin.com; access_log /var/log/nginx/localhost.access_log main; error_log /var/by zuckbin - Nginx Mailing List - English
Hi, I try to add this to my server conf server { listen 80; server_name localhost; location /nginx_status { stub_status on; access_log off; allow 127.0.0.1; deny all; } } But i always got this message: * Checking nginx' configuration ... nginx: unknown directive "stub_status" in /etc/nginx/nginx.conf:180 nginx: configuration file /etby zuckbin - How to...