Nginx 1.2.1 + aio + Debian 7
Hello,I've compiled nginx 1.2.1 under Debian 7 Wheezy --with-file-aio, however when i set aio on; and directio 4m; website works, but can not load large files from the hdd. Do I have to tune debian...
View ArticleRe: Nginx 1.2.1 + aio + Debian 7
Ah, looks like I found the problem (did not test it yet), but I am serving files from zfs on linux which does not support aio. Have to recompile.
View ArticleHow to config nginx with attached diagram
How to create correct config using attached diagram?This config cant get file from folder imagetest2 for files stored 'as is', only with rewrite rule.server {listen *:80;server_name...
View ArticleRe: OCSP stapling via web proxy
Sapherz Wrote:-------------------------------------------------------> Hi,>> I'm trying to set up OCSP stapling but our firewall currently does not> allow outbound port 80 unless its via a...
View Articlereverse proxy - PROPFIND 405
I have a reverse proxy pointing to IIS on the backend. The backend web application generates reports in RTF format that the user then displays on their workstation using MS Word or similar application....
View ArticleDigest authorization problem
Hello!I have trouble setting up the digest module [http://wiki.nginx.org/HttpAuthDigestModule] for even the simplest case. Hope someone can help me..I followed the installation instructions, stating...
View Articleip_hash
[russian, english]Hello,I'm trying to create a load balancer.ip_hash directive doesn't work.nginx redirects me to different servers each time using standard round-robin algorithm.Why?Thanks a lot,Sergei
View ArticleRe: ip_hash
upstream qrack {ip_hash;server 144...;server 207...;server 64...;}server {location / {proxy_pass http://qrack;...
View ArticleBasic nginx question, serve in subdirectory on website
Hello,I'm following the guide at http://arstechnica.com/information-technology/2014/04/taking-e-mail-back-part-4-the-finale-with-webmail-everything-after/2/ for setting up roundcube webmail with nginx....
View ArticleNginx: using X-Accel-Expires with Cache-Control
I'm using Nginx as a caching proxy server. I have problems with caching responses using both X-Accel-Expires and Cache-Control headers.My upstream returns some request body with headers to...
View ArticleWhere to specify gzip and buffer parameters on nginx proxy and nginx web server?
I have setup nginx as reverse proxy which gets all 80 requests and proxies them to other appropriate web servers behind. One of those web servers is also nginx serving php site. I want to specify gzip,...
View ArticleRe: Where to specify gzip and buffer parameters on nginx proxy and nginx web...
On the proxy, considering the speed between both nginx's being LAN speed.
View ArticleRe: Proxy_protocol, how to check protocol or port (not only remote IP)
I have the very same question. Any help would be much appreciated.
View ArticleRe: Where to specify gzip and buffer parameters on nginx proxy and nginx web...
so do i specify below in proxy nginx.conf in server section?# Caching Static Fileslocation ~* .(jpg|jpeg|png|gif|ico|css|js)$ {expires 365d;}
View ArticleRe: Proxy_protocol, how to check protocol or port (not only remote IP)
For logging you have $remote_addr:$remote_port, can't you pass $remote_port ?
View ArticleRe: Where to specify gzip and buffer parameters on nginx proxy and nginx web...
If thats where you want this to happen then yes.
View ArticleRe: Where to specify gzip and buffer parameters on nginx proxy and nginx web...
i really dont care where it happens since both of the servers more than capable handling it. However, I have tried above Caching both on proxy and web server but in both cases I had all images missing....
View Articleindex directive absolute vs relative
Hi!Looks like a very basic issue, but..What's the difference between absolute and relative paths for the index directive? The documentation says nothing about it:Index defines files that will be used...
View ArticleRe: Where to specify gzip and buffer parameters on nginx proxy and nginx web...
You only use it at one point not both, the frontend is the best point.
View Article