Re: nginx second site configuration
Looks like you have problem with dynamic content from PHP. Try asking new instance for some static content like:http://agencialojavirtual.com.br/test.htmlIt it working?Also make sure that:nginx...
View ArticleRe: Доступ по ip ИЛИ через клиентский сертификат - возможно ли?
Здравствуйте, itonohito.Вы писали 15 мая 2013 г., 16:46:22:> Добрый день!> Уважаемые гуру, подскажите, возможно ли средствами nginx сделать доступ к> сайту с определенных ip ИЛИ через...
View Article[nginx] Removed vestiges of SVN.
details: http://hg.nginx.org/nginx/rev/09dbd363050abranches:changeset: 5212:09dbd363050auser: Ruslan Ermilov <ru@nginx.com>date: Thu Apr 25 17:41:45 2013 +0400description:Removed vestiges of...
View Article[nginx] Upstream keepalive: slightly simplified code.
details: http://hg.nginx.org/nginx/rev/822b82191940branches:changeset: 5213:822b82191940user: Ruslan Ermilov <ru@nginx.com>date: Wed May 15 15:04:49 2013 +0400description:Upstream keepalive:...
View ArticleRe: error_page without content type
Richard Stanway <r1ch+nginx@...> writes:> Looks like your 404s are being generated by a backend, not by nginx. Youmay want to use fastcgi_intercept_errors / proxy_intercept_errors.You're...
View ArticleNoob question - Root vs Alias and image_filter
Hi,I'm starting with nginx, and I have some problems with resize of pictures. And when I'm trying my conf, I see I did not realy undersand some basic concepts.My first problem :I have a url like this :...
View ArticleПроверка на вхождение.
Добрый день.Существует необходимость проверить на входжение некоторую системную переменную:root /www/public_html;include /etc/nginx/fastcgi_params;fastcgi_pass fpm_server;fastcgi_index...
View ArticleRe: nginx second site configuration
VonHerman, Thank you very much for the tip. I did some play around after I read the link that you posted and I got it to work when I repeated the same config instructions from the one that was working....
View ArticleRe: Доступ по ip ИЛИ через клиентский сертификат - возможно ли?
если требовать сертификат, то в случае, если сертификат не предъявлен,nginx генерирует внутреннюю ошибку 495.делаете "error_page 495 = @fallback;", все, кто пришел безсертификата, отправляются в...
View ArticleRe: error_page without content type
2013/5/15 Svoop <svoop@delirium.ch>:> However, I found a way to pass the correct content type in the routing table.… which you may want to share, so that later people can look for aworking...
View ArticleNginx as reverse proxy - must point to different web servers
Hello,i'm a newbie on Nginx and i have this problem :We have Nginx as reverseproxy who point on a Java server (Platform play) - That's ok and work well :https://www.toto.frNow we would like to point to...
View ArticleRe: Noob question - Root vs Alias and image_filter
Ok, I have resolved my problem about resize.The solution is to add a location to the path. Like that :location ~ /media/test/(.*) {image_filter resize 50 10;proxy_pass...
View ArticleNginx + Mono (OpenBSD 5.3)
OK - I can confirm that nginx is in fact chroot(8) - After much playingaround, I noticed a comment in the ports documentation that mentions this(I know, I know...)So to solve this particular problem, I...
View ArticleRe: Nginx as reverse proxy - must point to different web servers
Either create a second location block (location /nagios {...) or update the folder name on the target device to match the existing. It will be difficult to catch absolutely everything with rewrites.
View ArticleRe: Nginx as reverse proxy - must point to different web servers
Hello Doctau,I'm relatively new to nginx as well, but I think I can propose a solution to your problem. You could use a regular expression (flagged by ~) in your location path to match both...
View ArticleRe: Nginx as reverse proxy - must point to different web servers
Thanks for reply u848237 ! 8)So, for you there is no simple solution ?Have you got an idea how can i process ?
View ArticleRe: redirect all unconfigured subdomains
Separate server block with no server_name directive? Or a dedicated IP for those unconfigured?
View ArticleRe: access log time format
Is it possible to format the time Nginx uses in access.log to match this?"%Y-%m-%d %H:%M:%S" or 2013-05-14 15:40:21My goal is to have Nginx access logs match the time format of the rest of...
View ArticleRe: Nginx as reverse proxy - must point to different web servers
Thanks Oliver for your quick response,I'll test your solution and will look at the wiki and i'll make a return if its OK !
View ArticleRe: access log time format
Yes, it is possible.See http://nginx.org/r/log_format, or, more specifically, $time_iso8601C.On 15 May 2013 10:04, Casey Scott <casey@scottmail.org> wrote:> Is it possible to format the time...
View Article