Re: 104: Connection reset by peer
You were right to seek for answers somewhere else than configuration,then... ;o)Glad you found you answer.I hope you'll find your way around that crash.---*B. R.*On Wed, May 8, 2013 at 8:31 AM, ron...
View ArticleRe: 403 Forbidden error with Mediawiki
Well, I feel pretty stupid now. I used an automatic script to generate that config and I just assumed that the rewrite would be included.Thanks & Oops.
View ArticleRe: Migrating existing Apache config
I was just about to suggest the same tool to convert .htaccess.... but haswarned in the website it does not convert everything and also it does notcheck syntax errors, so It might be even worst.I would...
View ArticleRe: resumable upload
Hello!On Tue, May 07, 2013 at 09:37:38PM +0200, Valery Kholodkov wrote:> On 03/29/2013 11:46 PM, Anatoly Mikhailov wrote:> >> >On Mar 29, 2013, at 7:38 PM, Andrey N. Oktyabrski...
View Articlengx_event_openssl_stapling.c vs. openssl version
There seems to be a version dependency on opnessl in ngnix1.4.I can build it on one platform but not the other where there's slightlyolder version of openssl header files....
View ArticleRe: ngx_event_openssl_stapling.c vs. openssl version
Hello!On Wed, May 08, 2013 at 10:17:23AM -0700, Alder Network wrote:> There seems to be a version dependency on opnessl in ngnix1.4.> I can build it on one platform but not the other where...
View ArticleRe: ngx_event_openssl_stapling.c vs. openssl version
It's compilation error. I don't have the exact error message at hand,but it's referencing a macro that's not defined in newer versionsof tls1.h. but not in slightly older versions of tls1.h.On Wed, May...
View ArticleRe: Negated Regular Expressions in location
Wow, that's a great one. That'll simplify a lot of configurations. Thanks so much!
View ArticleRe: Negated Regular Expressions in location
Johann, you are very welcome and I am happy to open you the world of perl regex assertions, but in spite of your original question this should not be a problem because of the order locations are...
View ArticleRe: Migrating existing Apache config
I would suggest not to use any ready-to-use-conversion-tools but rather learn the differences and convert the hosts manually one by one. It took me a couple of days to convert all of our sites to nginx...
View ArticleRe: Negated Regular Expressions in location
My config looks like this:server {location /favicon.ico {include caching.conf;}location /resources/ {include caching.conf;}location /robots.txt {include caching.conf;}location / {proxy_set_header...
View ArticleRe: Negated Regular Expressions in location
Here's the nginx version:server {location = /favicon.ico {include caching.conf;}location /resources/ {include caching.conf;}location = robots.txt {include caching.conf;}location ~ ^/ {proxy_set_header...
View ArticleRe: Negated Regular Expressions in location
Still, I hope I can turn that into a version that only needs the caching.conf once?
View ArticleRe: Negated Regular Expressions in location
location ~ ^/(favicon\.ico$|resources/|robots\.txt$) {include caching.conf;}location ~ ^/ {proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;proxy_set_header Host $host;proxy_http_version...
View ArticleRe: Mono + nginx (OpenBSD 5.3)
Hi allSo this is what I tried tonight:For sanity's sake:chown root /tmp/fastcgi-mono-socketchmod 777 /tmp/fastcgi-mono-socketTo see permissions on the socketls -la...
View ArticleRe: Migrating existing Apache config
Hello,> I would suggest not to use any ready-to-use-conversion-tools but rather> learn the differences and convert the hosts manually one by one. It took me> a couple of days to convert all of...
View ArticleRe: resumable upload
On 05/08/2013 07:03 PM, Maxim Dounin wrote:> Hello!>> On Tue, May 07, 2013 at 09:37:38PM +0200, Valery Kholodkov wrote:>>> On 03/29/2013 11:46 PM, Anatoly Mikhailov...
View ArticleRe: Gzip и ETag
> Префикс - неправильно, по результатам gzip'ования может> получиться разный контент, в зависимости от настроек или даже> тайминга ответа бекенда.Я поразмыслил над этим утверждением, и оно не...
View ArticleWebsocket proxy
This must have been discussed before but I am new to nginxand this forum.I am upgrading to 1.4 to use its websocket proxy feature.Say I have a websocket server running at port 81, so I wantto forward...
View Article