Hello Nginx Team, we would like to ask have you got solution for following problem. We have ftp users that are authorized in mysql they want to see their homedirs through the web by using the same user and password. for example: http://site.com/username1/ -> requires the username1 for username and his password1 http://site.com/username2/ -> requires the username2 for username and hiby izrodix - Nginx Mailing List - English
Thanks a lot for the help Mr Sysoev. It works.by izrodix - Nginx Mailing List - English
Hello Nginx Gurus, We have a local mirrored with wget web site. All dynamic files are saved like this "list.php?type=80.html [*.php?some args dot html]" but in href tags are <a href="list.php?type=80"> How can we rewrite requested files to local html files except images, css and js which are ok. Regards,by izrodix - Nginx Mailing List - English
We are using standart UFS file system but IO is not the problem. This is strange the CPU user == system. With apache22 with mod_fcgid we have round 20-25% idle and the system load is very low. last pid: 25961; load averages: 48.43, 34.30, 36.86 up 5+00:02:08 23:45by izrodix - Nginx Mailing List - English
Hi Guys, we try to migrate our apache 2.2 mod_fcgid with php-cgi configuration to nginx + php-fpm from ports on our freebsd 8.2 stable system.We hosted round 200-300 sites. The result is high load of the server, lots of system calls and mysql-server 5.1.55 has doubling his threads. Any suggestion ?by izrodix - Nginx Mailing List - English
Что означают эти сообщения и каким образом правительства могут быть? использования php-fpm 5-5.3.5 + nginx-0.8.54 в freebsd 8-Stable amd64 VIMAGE jail hw.pagesize is 4096 fastcgi_connect_timeout 60; fastcgi_send_timeout 80; fastcgi_read_timeby izrodix - Php-fpm Mailing List - Russian
Hi Guys, after long googling and trying to find the right setup for nginx and fastcgi we came to three settings: fastcgi_buffers, fastcgi_buffer_size and fastcgi_read_timeout; According to HttpFcgiModule manual the buffer size is equal to the size of one buffer in fastcgi_buffers by default. Are this settings correct because a few hours later we are still getting BadGateway error ? We are usingby izrodix - Php-fpm Mailing List - English
Jan 24 11:41:43.533118 child 37693 exited on signal 11 (SIGSEGV) after 116.541773 seconds from start Jan 24 11:41:43.533750 child 38348 exited on signal 10 (SIGBUS) after 60.120694 seconds from start Jan 24 11:41:44.289146 child 38475 startedby izrodix - Nginx Mailing List - English
Hi Guys, after long googling and trying to find the right setup for nginx and fastcgi we came to three settings: fastcgi_buffers, fastcgi_buffer_size and fastcgi_read_timeout; According to HttpFcgiModule manual the buffer size is equal to the size of one buffer in fastcgi_buffers by default. Are this settings correct because a few hours later we are still getting BadGateway error ? Weby izrodix - Nginx Mailing List - English
Any suggestions ? --> http://flowplayer.org/forum/2/56928by izrodix - Nginx Mailing List - English
This add-on module (ap22-mod_log_sql-dtc) allows the apache web server to use a MySQL database for logging of all operations. Is there any module like this for nginx?by izrodix - Nginx Mailing List - English
Thanks Guys for the replies, this configuration works for me. location ~ ^/vstore/(?<secure>[\w\-=]+,\d+)(?<file>/.*\.mp4)$ { secure_link $secure; secure_link_md5 $secure_link_expires.$file.SECRET; if ($secure_link = "") { return 403; } if ($secure_link = 0) { return 410; }by izrodix - Nginx Mailing List - English
Weibin Yao, it's working but may be I'm doing something wrong. Here is what I do. $uri_hash = md5('your_secret_word'.'/subdir1/subdir2/movie.flv', true); $uri_ehash = base64_encode($uri_hash); this is result of uri_ehash http://127.0.0.1/subdir1/subdir2/movie.flv?md5=F96syvsfhvPq54ME2VEX4A== this show me err 403 http://127.0.0.1/subdir1/subdir2/movie.flv I delete some part of haby izrodix - Nginx Mailing List - English
Thanks, for the replies but when i test this configuration users continue to download files from this url "http://127.0.0.1/subdir1/subdir2/movie.flv" without problem. Nginx doesn't return 403; location ~ \.flv { secure_link $arg_md5; secure_link_md5 your_secret_word$uri; if ($secure_link = "") { return 403; } root /store; flv; } nginx-0.8.54 from freebsd pby izrodix - Nginx Mailing List - English
Hi guys, I'm trying to configure secure link modulаr together with flv streaming module but without success. Can anyone give me an example with this basic setup. location ~ \.flv { root /store;by izrodix - Nginx Mailing List - English