Re: Protect /analytics on Nginx with basic authentication, but allow access to .php and .js files??

2015-02-11 Thread Francis Daly
it be possible. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: rewrite rules cms phpwcms not working

2015-02-16 Thread Francis Daly
to me what should happen to a request for /a/1.2.3.4.5.6.html -- probably the above configuration does not do what is wanted there.) Good luck with it, f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http

Re: rewrite rules cms phpwcms not working

2015-02-18 Thread Francis Daly
to me how a request for /dir/file.html should be handled, depending on the existence of dir and file.html. If that kind of request matters in the cms, you should probably test that it does what you want. Good luck with it, f -- Francis Dalyfran...@daoine.org

Re: Nginx Upload Progress Module stops functioning once behind reverse-proxy

2015-02-18 Thread Francis Daly
On Tue, Feb 17, 2015 at 09:30:46PM -0500, Ben Johnson wrote: On 2/16/2015 3:52 PM, Francis Daly wrote: Hi there, ...and draw a picture of what happens when a client sends a 1MB upload to nginx, and nginx sends it via proxy_pass to an upstream. That should show you why it fails. Any

Re: Need to remove folder name from URL

2015-02-12 Thread Francis Daly
it? f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Nginx Upload Progress Module stops functioning once behind reverse-proxy

2015-02-16 Thread Francis Daly
your upload_progress module on your upstream server. Not going to work. At least until you can use an unbuffered upload. Which is not in current nginx. (But is in other things.) f -- Francis Dalyfran...@daoine.org ___ nginx mailing list

Re: Second domain config does not redirect www traffic

2015-02-19 Thread Francis Daly
that the request is getting to nginx, no. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: default_server directive not respected

2015-01-29 Thread Francis Daly
you make / what response do you get / what response do you expect would help here. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Nginx with php configuration how to block all requests/urls other than two?

2015-01-29 Thread Francis Daly
traffic/requests on the subdomain apart from those two urls location / matches any normal request that does not match any other location. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http

Re: How to pass fastcgi custom variables in C?

2015-01-24 Thread Francis Daly
this variable and value. Thanks! Return it as a http response header, just like you would for a Set-Cookie:. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: smtps mail proxy

2015-01-24 Thread Francis Daly
is for. nginx may not be the right tool for this job. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Redirect problem

2015-01-24 Thread Francis Daly
-- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: issues with nginx-gridfs 3rd party module

2015-01-24 Thread Francis Daly
restart the nginx server? f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Bug or feature

2015-01-28 Thread Francis Daly
/ngx_http_upstream_module.html You are using the upstream module. You are not using any specific directives from the module, so they all take their default values (which happens to be unset). Is this a expected behavior ;-)? That it works, is expected. f -- Francis Dalyfran...@daoine.org

Re: download and movie alias

2015-01-09 Thread Francis Daly
~ ^/downloads/(.*)$ { Perhaps add location = /download { return 301 /download/; } (You may mean /download or /downloads, I'm not sure.) f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org

Re: Multiple matching limit_req

2015-01-09 Thread Francis Daly
; and the rest should work as you want. (Unless you use return.) f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: limit_conn module exclude also on Maxim Dunin recommended code

2015-01-09 Thread Francis Daly
configuration change might possibly do that? Replace $binary_remote_addr with $limit. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Fwd: Deny access to subfolder/files

2015-02-13 Thread Francis Daly
will handle the request /foo/doc/bar/filename.txt ? If it is the one you show, you will get http 403. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: 301 redirect

2015-02-14 Thread Francis Daly
~ oldname.html/ ) { rewrite ^ https://mywebsite.com/newname.html/? permanent; } But this doesn't work. Yes, it does. If your incoming request matches the string oldname.html/. It just isn't a very good way of implementing it. f -- Francis Dalyfran...@daoine.org

Re: 301 redirect

2015-02-14 Thread Francis Daly
the if that isn't the good way of implementing it.) Is this a good way ? : No. I'd say just use location =. Good luck with it, f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman

Re: limit_conn module exclude also on Maxim Dunin recommended code

2015-01-07 Thread Francis Daly
://nginx.org/r/limit_req_zone Which part of your req config means that you omit some client addresses from accounting? What similar zone config could you use? f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org

Re: resolver directive doesn't fallback to the system DNS resolver

2015-01-07 Thread Francis Daly
? == events {} http { server { listen 8080; location /one { proxy_pass http://www.example.com; } } } == Works for me. What config file shows the problem that you report? (If the above fails for you, then it may be worth examining external parts.) f -- Francis

Re: resolver directive doesn't fallback to the system DNS resolver

2015-01-07 Thread Francis Daly
.) f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Fake video sharing Android App !!

2015-03-16 Thread Francis Daly
configure nginx to. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Fake video sharing Android App !!

2015-03-16 Thread Francis Daly
that omit Referer, in order to block all requests from this app? How long do you think it will take the app author to change their app to include a Referer, if you do that?) f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx

Re: [security advisory] http://wiki.nginx.org/Redmine

2015-03-09 Thread Francis Daly
On Mon, Mar 09, 2015 at 04:44:05PM +0200, Gena Makhomed wrote: On 08.03.2015 22:50, Francis Daly wrote: Hi there, webpage http://wiki.nginx.org/Redmine has some security problems: 1. All redmine config files are available for anybody in internet, for example: https://redmine.example.com

Re: How to undo a global server deny all in a location block

2015-03-09 Thread Francis Daly
; in there. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: [security advisory] http://wiki.nginx.org/Redmine

2015-03-09 Thread Francis Daly
On Mon, Mar 09, 2015 at 08:24:43PM +0200, Gena Makhomed wrote: On 09.03.2015 19:25, Francis Daly wrote: Hi there, But the user must have followed some documentation to install redmine in the first place; and if they unthinkingly install it into /var/www/redmine they are probably doing

Re: Internal Server Error messages nginx proxy POP/IMAP/SMTP

2015-03-12 Thread Francis Daly
. If that request does give a sensible response, then you will want to look more closely at your original index.php. If it does not give a sensible response, then look more closely at what nginx sends to the php (fastcgi) server. f -- Francis Dalyfran...@daoine.org

Re: Internal Server Error messages nginx proxy POP/IMAP/SMTP

2015-03-11 Thread Francis Daly
-Attempt: 1 \ -i http://192.168.122.170:80/correo-proxy-auth/index.php Add whatever other header name/value pairs you need for one successful login. Until that replies with the expected response, none of your mail side of things will work. f -- Francis Dalyfran

Re: [security advisory] http://wiki.nginx.org/Redmine

2015-03-08 Thread Francis Daly
one $host I'm not sure how $http_host is less safe than $host. It is proxy_pass'ed to the real redmine server as the Host header. That server must be able to handle it safely anyway, no? f -- Francis Dalyfran...@daoine.org ___ nginx

Re: 403 Forbidden

2015-03-07 Thread Francis Daly
-- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: nginx + SabreDAV: Error 405 when accessing location via WebDAV, SabreDAV web interface works without problems

2015-03-14 Thread Francis Daly
: PROPFIND /TENANT_ID/webdav/ HTTP/1.0 ...because the request is for /TENANT_ID/webdav/, which refers to a directory that exists, and the nginx serve-from-the-filesystem handler does not do PROPFIND. f -- Francis Dalyfran...@daoine.org

Re: [security advisory] $http_host vs $host

2015-03-10 Thread Francis Daly
On Mon, Mar 09, 2015 at 08:56:28PM +0200, Gena Makhomed wrote: On 09.03.2015 19:25, Francis Daly wrote: Hi there, thank you for the explanation. It is true that $http_host is completely controlled by the client, and $host is mostly controlled by the client. It is true that they can have

Re: proper way to redirect from http to https w/query string notifier

2015-03-24 Thread Francis Daly
-- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: How to apply concurrent connection limit ?

2015-03-25 Thread Francis Daly
from last December's http://mailman.nginx.org/pipermail/nginx/2014-December/046207.html There is a bit more background in each thread there. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http

Re: try_files is broken with geoip?

2015-03-30 Thread Francis Daly
are doing not to use if inside location for anything other than return or effective equivalents. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: allow access to certain client addresses or use auth_basic

2015-03-30 Thread Francis Daly
f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Nginx with Mailman

2015-03-26 Thread Francis Daly
.) What fastcgi_param does your fastcgi server (fcgiwrap) use to determine the file to process? (It is usually SCRIPT_FILENAME; but some fastcgi servers use something different.) f -- Francis Dalyfran...@daoine.org ___ nginx mailing list

Re: ProxyPass to target need to pass another proxy

2015-03-23 Thread Francis Daly
a ProxyRemote * XXX.YYY.FFF.EEE:3128 . apache2 does speak http-being-proxied to a http proxy server. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: nginx symfony2 configuration

2015-03-02 Thread Francis Daly
On Mon, Mar 02, 2015 at 09:49:37PM +0100, Pascal Christen wrote: 2015-03-02 20:50 GMT+01:00 Francis Daly fran...@daoine.org: On Mon, Mar 02, 2015 at 05:48:31PM +0100, Pascal Christen wrote: Hi there, how can I fix this problem? location /backend { It could match this location

Re: nginx symfony2 configuration

2015-03-02 Thread Francis Daly
the directory /Users/test/myproject/backend/web/app_dev.php/. What I'm doing wrong? What does the error_log say? Anything about Not a directory? f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org

Re: add_before_body

2015-03-04 Thread Francis Daly
display a No input file specified.. What does your configuration say about how to handle that request? (You may find it works better if you use / not \.) f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http

Re: add_before_body

2015-03-04 Thread Francis Daly
/dropletlocal/library/global/func-global.class.php { fastcgi_pass 127.0.0.1:9000; fastcgi_param SCRIPT_FILENAME _the_file_that_you_care_about_; includefastcgi_params; } to each server block; possibly something else will work. Good luck with it, f -- Francis Daly

Re: add_before_body

2015-03-04 Thread Francis Daly
. It is not clear to me why you can't add one more include the_add_before_body_bit; line to each. But I'm sure you have your reasons. Good luck with it, f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http

Re: rewrite rules cms phpwcms not working

2015-02-24 Thread Francis Daly
-- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Required Help on satisfy any setup

2015-02-24 Thread Francis Daly
http://nginx.org/en/docs/http/ngx_http_realip_module.html - but I have not tested that myself. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Redirecting existing links to a sub-folder to a new subdomain

2015-02-22 Thread Francis Daly
-name.exampledomain.com/$1 permanent; That can work, depending on where exactly it is written. But this didn't seem to have any effect after restarting nginx. What do the logs show? Nothing suggest one kind of fix; something suggests another, depending on what the something is. f -- Francis Daly

Re: pretty URLs in subfolders

2015-02-21 Thread Francis Daly
http://nginx.org/en/docs/ Can you show one example config that does not do what you want it to do when you make a specific request? f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org

Re: proper way to redirect from http to https w/query string notifier

2015-03-24 Thread Francis Daly
On Wed, Mar 25, 2015 at 02:50:29AM +0900, Edho Arief wrote: On Wed, Mar 25, 2015 at 2:32 AM, Francis Daly fran...@daoine.org wrote: Hi there, If your backend will accept /request?source=server1 and /request?source=server1 as being equivalent, then you could use the $is_args variable

Re: disable file uploads

2015-03-24 Thread Francis Daly
out what has happened and can make it right. Good luck identifying the cause, f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: disable file uploads

2015-03-23 Thread Francis Daly
On Tue, Mar 24, 2015 at 12:47:38PM +1300, Steve Holdoway wrote: On Mon, 2015-03-23 at 22:52 +, Francis Daly wrote: On Tue, Mar 24, 2015 at 09:13:50AM +1300, Steve Holdoway wrote: Hi there, Is there any way to stop / disable random file uploads... for example, I'm having 'fun

Re: disable file uploads

2015-03-23 Thread Francis Daly
? f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Rewrite undecoded URL

2015-03-23 Thread Francis Daly
$strip_the_slash_p; } f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: $skip_cache define home page

2015-03-23 Thread Francis Daly
or urls is the home page? f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Set a PHP parameter for only one location

2015-04-01 Thread Francis Daly
or fastcgi_index directives will do anything useful.) f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: $skip_cache define home page

2015-04-02 Thread Francis Daly
On Wed, Apr 01, 2015 at 07:41:57PM -0400, carnagel wrote: Francis Daly Wrote: --- On Sun, Mar 22, 2015 at 06:35:31AM -0400, carnagel wrote: Hi there, I understand how to skip cache on cookies, POST, query strings, urls containing

Re: handling different two way ssl-request via a proxy system

2015-04-13 Thread Francis Daly
does not talk to a proxy. nginx is not a proxy. nginx may not be the right tool for your system. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Nginx reverse proxy multi upstream (multiples sites)

2015-04-11 Thread Francis Daly
the backend servers so that all of the content on 10.1.0.12 is available below /panel/, and all of the content on 10.1.0.16 is below /market/ (or some other unique prefix) and use *that* as the way that nginx can decide which backend to use. f -- Francis Dalyfran...@daoine.org

Re: rewrite rules issue

2015-04-20 Thread Francis Daly
that you report. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: rewrite rules issue

2015-04-19 Thread Francis Daly
/var/www/domain.fr/web/subdomain; is probably what you really want, but I guess there is some reason why you don't just use that? Good luck with it, f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http

Re: dificulty finding local static content

2015-04-19 Thread Francis Daly
On Sun, Apr 19, 2015 at 02:49:26AM -0400, gariac wrote: Hi there, Argh! Pilot error! Once I cleared the browser cache, the website works. Good that you found the working system. And thanks for following up, so that the list knows there is no ongoing problem. Cheers, f -- Francis

Re: Static files bad loading time

2015-04-25 Thread Francis Daly
to tell nginx to serve any static files. Perhaps the port-8080 server can tell you more about what is happening? f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: issue with rewrite rule, need help

2015-04-25 Thread Francis Daly
On Sat, Apr 25, 2015 at 08:25:20AM -0400, blason wrote: Hi there, What does your configuration tell nginx to do with the request for /xxx/distributor_x/receipt_pdf/xx_201504_MH55_.pdf You haven't shown the rewrite rule mentioned in your Subject: line. f -- Francis Daly

Re: rewrite rules issue

2015-04-21 Thread Francis Daly
leave it for someone else. Good luck with it, f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: rewrite rules issue

2015-04-19 Thread Francis Daly
; in a separate server{} block, and then have /stats/ and /error/ locations which do whatever else you want them to do. Good luck with it, f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman

Re: Trying to see my NGINX downloads folder via https?

2015-04-30 Thread Francis Daly
of the directory /usr/share/nginx/www/downloads, for the request /downloads/, then you want root /usr/share/nginx/www as your relevant configuration. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http

Re: proxy_redirect not working with refresh

2015-04-30 Thread Francis Daly
from web. Why does your back-end include the string http://192.168.1.9/; in its response body? Can you make it instead include a string based on the Host: header it receives? If so, that is what the proxy_set_header Host $host is for. f -- Francis Dalyfran...@daoine.org

Re: Static files bad loading time

2015-04-30 Thread Francis Daly
of day, anything like that? If you make the request from the machine itself, so network issues should be minor, does it still show sometimes being slow? Good luck with it, f -- Francis Dalyfran...@daoine.org ___ nginx mailing list

Re: Installed nginx with iredmail; how to add web content test without DNS change

2015-05-02 Thread Francis Daly
for /, and configure it to do that. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Is there any way to load SSL certificates from a URL?

2015-05-02 Thread Francis Daly
conceivably replace it with a thing which fetches the certificates from the right place and puts them in the right place, and then runs the real nginx binary, without needing any changes from stock nginx. Good luck with it, f -- Francis Dalyfran...@daoine.org

Re: Connection timeout from work, working anywhere else

2015-05-04 Thread Francis Daly
; is causing this issue, but I have no idea if this is a configuration of the nginx server and if I can do something around that. If it matters: what is the configuration of the nginx server? f -- Francis Dalyfran...@daoine.org

Re: Deny referrer using map directive

2015-05-04 Thread Francis Daly
http: (because I don't have a test https: server to hand). What happens when you leave all of the ...skip... parts empty? Is there any additional configuration needed? Do your logs show that this request was handled in the server{} block that you think it was handled in? f -- Francis

Re: PCRE with NGINX

2015-05-05 Thread Francis Daly
whether duplicate or link is better.) Thanks, f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: error running shared postrotate script

2015-05-06 Thread Francis Daly
the packager, so that might be the best place to get a will work on next update solution. Good luck with it, f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: FastCGI sent in stderr: Primary script unknown

2015-05-06 Thread Francis Daly
permission for the fastcgi-server user? Good luck with it, f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: How to block fake google spider and fake web browser access?

2015-05-06 Thread Francis Daly
that that combination is the reason your deny directives do not act the way you want them to. It looks to me like you can safely move all of these ifs to server{} level, outside the location{}. If you do that, does it change the response that you get at all? Cheers, f -- Francis Dalyfran

Re: How to block fake google spider and fake web browser access?

2015-05-05 Thread Francis Daly
{}? And in the enclosing server{}? Can you provide a complete nginx.conf that shows the behaviour you report? (It doesn't have to be your production config. Something smaller that shows this problem on a test machine, may make obvious where the problem is.) Thanks, f -- Francis Daly

Re: Connection timeout from work, working anywhere else

2015-05-05 Thread Francis Daly
.) But that config is presumably in one of the files mentioned in an include directive. include /etc/nginx/conf.d/*.conf; include /etc/nginx/sites-enabled/*; Good luck with it, f -- Francis Dalyfran...@daoine.org ___ nginx

Re: Connection timeout from work, working anywhere else

2015-05-05 Thread Francis Daly
at work allow WebSocket connections to pass through it? Can you successfully connect to any WebSocket service anywhere from work? If not, the problem may not be on the nginx side. Good luck with it, f -- Francis Dalyfran...@daoine.org

Re: canonicalization of $uri with /?.* content

2015-04-17 Thread Francis Daly
of $uri? When I request http://example.com/?Open, what response do you want to send me? Does == location = / { if ($is_args) { return 301 /; } } == cause your right thing to happen? f -- Francis Dalyfran...@daoine.org

Re: alias vs root in regex location

2015-04-11 Thread Francis Daly
root; and some suggesting alias. I suspect that it depends on where things are installed. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: rewrite rules issue

2015-04-18 Thread Francis Daly
/host.domain/admin/ (with a 404 error of course) Are you reporting that when you have the three lines above in your config, you get this behaviour; and when you remove those three lines from your config, you do not get this behaviour? Because that seems strange. Thanks, f -- Francis

Re: canonicalization of $uri with /?.* content

2015-04-18 Thread Francis Daly
nginx without the scripting engines, shouldn't it return 404 by default, instead of returning 200 while ignoring $uri's content? I'd say no. If you want your instance to care more about $query_string than the default, you can configure it to, for example as above. Cheers, f -- Francis

Re: problem : nginx with magento

2015-06-08 Thread Francis Daly
http://example.com/index.php;? Specifically: what are all of the http headers returned? f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: handling subdirectories location

2015-06-08 Thread Francis Daly
the php app. Some insist on being installed in /. Good luck with it, f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Re:Re: DNS configuration to invoke complete URL

2015-06-08 Thread Francis Daly
: location = / { return 301 http://workspace.corp.no/workspace/agentLogin; } f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: handling subdirectories location

2015-06-08 Thread Francis Daly
On Mon, Jun 08, 2015 at 08:08:10PM -0300, Thiago Farina wrote: On Mon, Jun 8, 2015 at 7:46 PM, Francis Daly fran...@daoine.org wrote: On Mon, Jun 08, 2015 at 02:07:54PM -0300, Thiago Farina wrote: Hi there, server { listen 80; server_name domainame.com; root /data/www

Re: handling subdirectories location

2015-06-08 Thread Francis Daly
On Mon, Jun 08, 2015 at 08:53:45PM -0300, Thiago Farina wrote: On Mon, Jun 8, 2015 at 8:26 PM, Francis Daly fran...@daoine.org wrote: On Mon, Jun 08, 2015 at 08:08:10PM -0300, Thiago Farina wrote: Hi there, server { listen 80; server_name domainame.com; root /data

Re: fastcgi_pass / error page /error code in HTTP rsp

2015-06-09 Thread Francis Daly
the error page and the error code to the client? Configure it according to the common examples in the documentation, not according to the special-case examples. Good luck with it, f -- Francis Dalyfran...@daoine.org ___ nginx mailing

Re: problem : nginx with magento

2015-06-09 Thread Francis Daly
handled by the config that you showed. Can you start with a small complete config that clearly shows the problem you are reporting? f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman

Re: NTLM or HTTP Digest authentication to Parent proxy

2015-06-23 Thread Francis Daly
way to resolve this issue using NGINX No. Search for proxy servers; they'll have a better idea of what they can do. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo

Re: Static Content on Different Server Isn't Loaded??

2015-06-23 Thread Francis Daly
. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: unknown directive thread_pool

2015-06-25 Thread Francis Daly
, f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Understanding alias (used as rewrite)

2015-06-25 Thread Francis Daly
is the test doing that would be bad if it were not done? Cheers, f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Understanding alias (used as rewrite)

2015-06-24 Thread Francis Daly
. But it all depends on the configuration that is not yet shown. And rewrite does something different, documented at http://nginx.org/r/rewrite; it involves uris, not filenames. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx

Re: Dash in request url messes up regex?

2015-06-26 Thread Francis Daly
which indicates that PHP is processing the file? Is there any difference in response if you add ?php at the start of the magento-check.php file? f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http

Re: Nginx URL Fallback setup with internal redirection in reverse-proxy settings

2015-06-19 Thread Francis Daly
want - proxy_pass or fastcgi_pass to something external with appropriate other settings, most likely. Good luck with it, f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman

Re: unknown directive thread_pool

2015-06-24 Thread Francis Daly
...; events { } http { server { } } == f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Caching fastcgi url

2015-06-23 Thread Francis Daly
{}. I'd probably use map, though, if I were going to do that. f -- Francis Dalyfran...@daoine.org ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

<    1   2   3   4   5   6   7   8   9   10   >