Re: Log VLC access requests in nginx
4 and then 5 is normal nginx behavior, your going to need something between 3 and 4, running a nginx debug build with full debugging on should show you the logging you need, locate this debug log code...
View ArticleRe: Log VLC access requests in nginx
Thank you very much.I'm running osx and brew. I built a version with debug and run some tests. I enabled debug level in nginx.conf.Good news: client IP is logged.Bad news: username is not logged before...
View Articlemeteor app on nginx
HelloHas anybody used meteor.js(app framework in node.js) in ngnixim having dificulties with caching , I get blank page when caching is on.
View ArticleRe: Purging nginx cache by deleting cache files does not always work
Any ideas on this?
View ArticleRe: Purging nginx cache by deleting cache files does not always work
Are you also updating the memory (keys_zone) ?
View Articledynamically rate_limit ?
Hi folks,I'm after a way to dynamically adjust bandwidth in nginx.Current vhost setup is:maximum connections 10max connection per client ip = 2maximum rate per connection = 8MbitIdeally, 5 clients x 2...
View ArticleNginx showing old version of site
Hello,Recently started having a very strange issue. I have Nginx as the LB with 2 backend webservers (tomcat) and also using elastic nginx for updating upstreams.Everything was working fine and couple...
View Article301 from domain https to subdomain https
Hi!I'm looking for any information about how to do a 301 from a https domian to a https subdomain. We've got the certificates for the www.somedomain.com, but not for the somedomain.com. The redirects...
View ArticleNginx drop handshake
Hey guys!When somebody accessing my web site through HTTPS by direct IP (not hostname) or without some special header in request => I want not only to reject this request(which is easy for the IP...
View ArticleRe: Purging nginx cache by deleting cache files does not always work
No, I'm just deleting the physical file. Does the shared mem cache persist after the file is deleted? Is there a method of flushing the mem cache?
View ArticleRe: Purging nginx cache by deleting cache files does not always work
silentmiles Wrote:-------------------------------------------------------> No, I'm just deleting the physical file. Does the shared mem cache> persist after the file is deleted? Is there a method...
View ArticleCached only range request
How can I make my server cached only the range reguest? And cache the entire file.
View Articledynamic document root and case insensitive mapping
Hi,I ve a bigger problem.We use this config to map subdomain to dynamic document root:server_name ~^(?<branch>.+?)\.oururl.com$;root "/var/www/folder-$branch";It is working, so far, UNTIL we have...
View ArticleRe: dynamic document root and case insensitive mapping
Have a look at https://github.com/replay/ngx_http_lower_upper_case
View Articlereverse proxying exchange 2013, rdp over ssl and sstp vpn
Hello all,I need to publish an Exchange Server 2013 (OWA, EWS) on one server, remote desktop via ssl gateway (rdweb gateway) on another server and an sstp vpn (windows ssl vpn) on a third server, all...
View ArticleRe: reverse proxying exchange 2013, rdp over ssl and sstp vpn
For RDP you need streaming, ea. vpn example:# load balance your vpn serversworker_processes 2;error_log logs/error.log;events {worker_connections 16384;}# http {# ... your usual http block ...# } #...
View ArticleRe: reverse proxying exchange 2013, rdp over ssl and sstp vpn
Now I tried first experiments but I get an error message:nginx: [emerg] unknown directive "stream" in /etc/nginx/sites-enabled/...here is the configuration file I...
View ArticleRe: reverse proxying exchange 2013, rdp over ssl and sstp vpn
You need at least nginx v1.8 when stream was added. 1.9.4 would be better since some stream issues have been resolved.
View ArticleDetect domain and device and redirect
HelloI would like to detect the device from with nginx and route to a specific root or folder of the index.html, my configuration is the following :server {listen 80 default_server;server_name...
View ArticleRe: Convert Apache require user to nginx
I think this post might be helpful to get you started: http://www.cyberciti.biz/faq/linux-unix-nginx-access-control-howto/
View Article