Re: 403 forbidden with lynx www browser

2015-11-24 Thread Sylvain BERTRAND
On Tue, Nov 24, 2015 at 06:41:39PM +0100, B.R. wrote: > On Tue, Nov 24, 2015 at 2:07 PM, Sylvain BERTRAND < > sylvain.bertr...@gmail.com> wrote: > > > Then, if I understand well, it's a CloudFlare mistake, who happens to use > > nginx only. > > > > That makes sense, and is quite unfair for nginx t

Re: Complex url rewriting

2015-11-24 Thread lmauldinpe15
I think this seems to be working for now. Does anyone see a problem with it: # define web root root /var/www/html/public; index index.php default.php index.html; location / { try_files $uri $uri/ =404; } location ~ [^/]\.php(/|$) { fastcgi_split_path_in

Re: Complex url rewriting

2015-11-24 Thread lmauldinpe15
If I followed your post correctly, you wanted me to make a map of locations. However, I want the users to be able to add a new directory (ex: /var/www/c/foo) and have a url like 'http://xxx/c/foo/index.php/users/login' automatically served by /var/www/c/foo/index.php without having to change Nginx

Re: 403 forbidden with lynx www browser

2015-11-24 Thread B.R.
On Tue, Nov 24, 2015 at 2:07 PM, Sylvain BERTRAND < sylvain.bertr...@gmail.com> wrote: > Then, if I understand well, it's a CloudFlare mistake, who happens to use > nginx only. > > That makes sense, and is quite unfair for nginx to be displayed while > applying > CloudFlare blocking. > > That's re

Re: [Solved] nginx 1.9.6 /etc/nginx/html

2015-11-24 Thread basti
Upgrade to nginx 1.9.7 fixed the error with/etc/nginx/html Am 24.11.2015 um 14:54 schrieb basti: > Hello, > I have installed nginx 1.9.6 on debian jessie. > As I can see there is no sites-enabled and sites-available anymore. Is > that right? > > An other strange thing is that nginx looks in "/etc

nginx 1.9.6 /etc/nginx/html

2015-11-24 Thread basti
Hello, I have installed nginx 1.9.6 on debian jessie. As I can see there is no sites-enabled and sites-available anymore. Is that right? An other strange thing is that nginx looks in "/etc/nginx/html" for files but this dirctory does not exist. For example: 2015/11/24 14:24:51 [error] 14763#14763

Re: 403 forbidden with lynx www browser

2015-11-24 Thread Sylvain BERTRAND
On Tue, Nov 24, 2015 at 03:57:21PM +0300, Maxim Dounin wrote: > Hello! > > On Tue, Nov 24, 2015 at 10:00:01AM +1100, Sylvain BERTRAND wrote: > > > On Mon, Nov 23, 2015 at 07:31:15PM +, Nelson, Erik - 2 wrote: > > > B.R. Monday, November 23, 2015 2:26 PM > > > On Mon, Nov 23, 2015 at 12:23 AM,

Re: 403 forbidden with lynx www browser

2015-11-24 Thread Maxim Dounin
Hello! On Tue, Nov 24, 2015 at 10:00:01AM +1100, Sylvain BERTRAND wrote: > On Mon, Nov 23, 2015 at 07:31:15PM +, Nelson, Erik - 2 wrote: > > B.R. Monday, November 23, 2015 2:26 PM > > On Mon, Nov 23, 2015 at 12:23 AM, Sylvain BERTRAND > > wrote: > > >>That's why I'm posting here: *Only ngin

Re: Missing methods in ngx_http_dav_module

2015-11-24 Thread Maxim Dounin
Hello! On Tue, Nov 24, 2015 at 05:08:45PM +0800, 高翔 wrote: >- PROPFIND >- PROPPATCH >- LOCK >- UNLOCK > > > Above methods are not implemented in ngx_http_dav_module module, > > It was said they are in TODOs but three years past... > http://mailman.nginx.org/pipermail/nginx/2012

Missing methods in ngx_http_dav_module

2015-11-24 Thread 高翔
- PROPFIND - PROPPATCH - LOCK - UNLOCK Above methods are not implemented in ngx_http_dav_module module, It was said they are in TODOs but three years past... http://mailman.nginx.org/pipermail/nginx/2012-June/034197.html Will they be implemented? Thanks!