Hello,
To serve static contents i.e. images I use try_files directive of Nginx. My
configuration location block is as below.
location ~* \.(jpg|jpeg|png|gif)$ {
try_files $request_uri @missingImg;
}
@missingImg is named location block with proxy_* directive.
The above configura
Hi Matthias,
> While ssl_prefer_server_ciphers usually works I've noticed some strange
> behaviour with Android. Firefox Sync uses with this settings "TLSv1
> RC4-SHA". When I remove all RC4 ciphers from that list, it chooses "TLSv1
> DHE-RSA-AES128-SHA". I'm wondering why it chooses RC4-SHA inst
Context:
I am currently using nginx to serve as a Response Cache Proxy in order to
shim-out (isolate) network latency while running some performance related
tests.
The Perf Tests are comprised of 50 repetitions of the same set of requests.
=> I have been able to successfully set-up the proxy_cach
Hi,
I've configured ssl with the following options:
ssl_dhparam /etc/nginx/pem/dhparam2048.pem;
ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers
'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:D
> With wordpress MU setups, you need to manually set up the blog id
> ( well, at least I have so far )... here's some extracts from one of
> my
> site configs:
>
> location ^~ /blogs.dir {
Thanks for sharing your config.
What version of WordPress are you running? Mine doesn't have a blogs.dir
di