Am 24.10.11 15:02, schrieb Andrew Alexeev: > Hi, > > You can check this one > http://wiki.nginx.org/MailCoreModule > > and probably (albeit, only through a translation :) > http://citrin.ru/nginx:ngx_mail_core_module > > We'll shortly be adding an updated version on http://nginx.org/en/docs/ too. > > Also, do you need smtp proxy with or w/o authorization? What's thby JG - Nginx Mailing List - English
Hi, i already googled, but unfortanly i wasnt able to find a example for nginx smtp proxy configuration. i wanted to setup as a simple smtp proxy in front of a sendmail daemon. thanks! Juergen _______________________________________________ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginxby JG - Nginx Mailing List - English
Hi, i need to translate this htaccess to nginx: RewriteCond %{QUERY_STRING} !^/?url RewriteCond %{QUERY_STRING} !^/?auto RewriteRule ^(.*)$ /?url=$1 is this the right solution? if ($args !~ "^/?url"){ set $rule_0 1$rule_0; } if ($args !~ "^/?auto"){ set $rule_0 2$rule_0; } if ($rule_0 = "21"){ rewrite ^/(.*)$ /?url=$1 last; } cheers, juergen _____________by JG - Nginx Mailing List - English
Am 19.07.11 20:43, schrieb Igor Sysoev: > On Tue, Jul 19, 2011 at 02:10:20PM -0400, Jim Ohlstein wrote: >> Hello, >> >> I'm using aio on FreeBSD 8.2 with the following in my nginx.conf: >> >> >> http { >> >> ... >> >> sendfile on; >> aio sendfile; >> tcp_nopush on; >> read_ahead 512k;by JG - Nginx Mailing List - English
Thanks :) Am 21.12.10 12:59, schrieb Piotr Sikora: > Hi, > >> any ideas whats wrong here? > > You're using "proxy_cache_*" (which works only with "proxy_pass") with > static files and FastCGI. > > For FastCGI use "fastcgi_cache_*", for static files use ngx_slowfs_cache > [1]. > > [1] http://labs.frickle.com/nginx_ngx_slowfs_cache/by JG - Nginx Mailing List - English
Hello, i got a clustered setup, where the content is beeing served from a nfs share. thats why i want to cache the static components via nginx, but unfortanly i didnt get it to work. Heres my Config: Global Configuration nginx.conf section http proxy_cache_path /var/www/cache levels=1:2 keys_zone=ccdscache:32m max_size=1000m inactive=7d; proxy_temp_path /var/www/cache/tmp; Vhosby JG - Nginx Mailing List - English
sounds to me like a session issue. why not just use memcached as session backend? http://www.dotdeb.org/2008/08/25/storing-your-php-sessions-using-memcached/ On 08/10/2010 09:24 AM, josesan311 wrote: > Hello guys, > > Im having some weird issue. I currently have my website setup as > follows, > > - 1 nginx server configured as a load balancer > - 2 apache servers configuredby JG - Nginx Mailing List - English
found the problem... our customer created a cronjob which dumped the mysql db every 2 hours. after mysqldump starts, a few secs later nginx was in trouble. doh. fail :) On 07/29/2010 02:05 PM, Phillip Oldham wrote: > Can you provide information on your PHP set-up? Eg. how many > processes/FCGI children are running, etc? > > _______________________________________________ > nginxby JG - Nginx Mailing List - English
Hi, i got some problems with a high loaded php site running nginx + php (without fpm). i get the following error message from time to time: 162503979 upstream timed out (110: Connection timed out) while reading response header from upstream, While this occours, nginx stops delivering php content and drops the error document. Heres a part of my nginx conf user webuser1 nginx; worker_prby JG - Nginx Mailing List - English
Hi, is it possible configure a "datelabel" for the access.log? access.log-YY-MM-DD Thanks Juergen _______________________________________________ nginx mailing list nginx@nginx.org http://nginx.org/mailman/listinfo/nginxby JG - Nginx Mailing List - English
Ok :) thanks to both of you Juergen On 07/19/2010 01:10 PM, Igor Sysoev wrote: > On Mon, Jul 19, 2010 at 02:20:49PM +0400, Boris Dolgov wrote: > >> On Mon, Jul 19, 2010 at 1:59 PM, Juergen Gotteswinter <jg@internetx.de> wrote: >>> Hi, >>> >>> come some take a look at these rewrite rules if they are ok regarding >>> performance? >>>by JG - Nginx Mailing List - English
Hi, come some take a look at these rewrite rules if they are ok regarding performance? if ($host = 'forum.de' ) { rewrite ^/(.*)$ http://www.forum.de:81/$1 permanent; } if ($host ~* ^(www\.)??forum\.(at|ch|com|eu|info|net|org)) { rewrite ^(.*)$ http://www.forum.de:81 last; break; } } Thanks :) Juergen ______________________by JG - Nginx Mailing List - English
nevermind... found the source ;) On 05/17/2010 04:01 PM, Juergen Gotteswinter wrote: > Hello, > > i am trying to setup nginx with the secure download module. but > unfortunately i cant enable it. > > location /media/aveo/videos { > secure_download on; > secure_download_secret xxxxxxxx; > secure_download_path_mode file; >by JG - Nginx Mailing List - English
Hello, i am trying to setup nginx with the secure download module. but unfortunately i cant enable it. location /media/aveo/videos { secure_download on; secure_download_secret xxxxxxxx; secure_download_path_mode file; } nginx -t says : unknown directive "secure_download" in /etc/nginx/nginx.conf:74 i cant even find a configure parby JG - Nginx Mailing List - English
or create a fifo file and let nginx write his logs in the fifo. works fine for me. Greetings Juergen Peter Leonov wrote: > This thread might be of help: > http://nginx.org/pipermail/nginx/2009-June/013042.html > > Ny the way "tail -F" is the only recommended way to do the near real-time log parsing with nginx. > > On 14.01.2010, at 8:12, Dennis J. wrote: > >by JG - Nginx Mailing List - English
Hello, i rebuilded the nginx rpms in suse's buildservice. you can get them here: http://download.opensuse.org/repositories/server:/http/ major change for 0.8.x: file-aio enabled for distributions which got a kernel newer then 2.6.22 (opensuse11.0, SLE11 etc) Regards Juergen Igor Sysoev wrote: > Changes with nginx 0.8.27 17 Nov 2009 > > *)by JG - Nginx Mailing List - English
Strange, i tried to compile it with ./configure --with-file-aio but the error message is the same. did you use the original centos kernel or a self baked one? if its the original kernel in you case, are you sure that aio was active? Greetings Juergen Igor Sysoev wrote: > On Wed, Nov 11, 2009 at 01:44:32PM +0100, Juergen Gotteswinter wrote: > >> 2.6.18-164.el5 but redhat does aby JG - Nginx Mailing List - English
2.6.18-164.el5 but redhat does a lot of backporting. i tried to compile it on a centos 5 machine with ./configure --with-file-aio and get this checking for Linux AIO support ... not found ../configure: no supported file AIO was found Currently file AIO is supported on FreeBSD 4.3+ and Linux 2.6.22+ only seems like centos 5 & redhat enterprise 5 are too old but i have the following packagby JG - Nginx Mailing List - English
Hello Folks, is it possible to use NGINX AIO on CentOS5, or is the CentOS5 Kernel too old for this? Greetings Juergenby JG - Nginx Mailing List - English
the status stubs module & munin for example gives you nice graphs in near realtime (depending on how you configure the munin cron... every 2 minutes... 3 minutes... whatever) greetings Juergen Jay Ess wrote: > Anyone got a clue how to get real time (or semi real time) bandwidth > statistics *per* virtual host without parsing the logs or sending them > to syslog? > > >by JG - Nginx Mailing List - English
Hello Folks, is there any way to integrate something like the sorry server in keepalived. i mean, if no backend system is available the request should be redirect to url-something with a maintanance page. Thx Juergenby JG - Nginx Mailing List - English
Hi Igor thanks :) OpenSuSE/SuSE Enterprise RPMS are submitted for rebuild, and should be available in 1-2 hrs http://download.opensuse.org/repositories/server:/http/ Juergen Jeff Waugh wrote: > <quote who="Igor Sysoev"> > >> Changes with nginx 0.8.17 > > Thanks Igor -- 0.8.17 is on its way into my devel branch PPA right now: > > https://launchpad.by JG - Nginx Mailing List - English
Hello Folks i got setup where nginx acts as reverse proxy for 3 apache backends. yesterday we had the case that some kind of bot or spider started attacking one domain which gets through nginx. is there any possibility to configure nginx for something like "rate limiting" or should i better go with iptables? the hardware is strong enaugh to take this (quadcore xeons). Greetings Jby JG - Nginx Mailing List - English
put a ulimit -n 65000 or something like that in /etc/sysconfig/nginx or depending on the distro into the nginx init script greets Ilan Berkner wrote: > how to handle? > > 2009/09/10 10:09:30 9691#0: accept() failed (24: Too many open > files) >by JG - Nginx Mailing List - English
oh @#! forget it... my fault... i set the http port to 81 and was calling port 80 all the time in firefox. thats some way to spent time, tooby JG - Nginx Mailing List - English
hello again, ok, i feed memcached now with this perl script.... --------- code ---------- #!/usr/bin/perl # Usual suspects use strict; use warnings; # Additional modules needed use File::Find; use Cache::Memcached; ### Create Memcache connection my $cache = new Cache::Memcached { 'servers' => [ 'localhost:11211', ], 'compress_threshby JG - Nginx Mailing List - English
normally, i whould agree. but in this special case the system has trouble to handle the high io load due to really lots of files (about 8 million.... i know... crazy, not my content). and the system got 32gb of ram, and there are no more services then the nginx... to get a workaround for the hd io load, i just wanted to get nginx to load the swf and flv files into memcached which should be possby JG - Nginx Mailing List - English
![]() |
![]() |
![]() |
![]() |
![]() |