RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread C0nw0nk W0nky
Try it with a mp4,flv,jpg file. Not documents that have a plain text mime type. > To: nginx@nginx.org > Subject: Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing > From: nginx-fo...@nginx.us > Date: Fri, 4 Apr 2014 18:59:50 -0400 > > I did a simple config: > > server { > listen 80; >

Re: Web GUI

2014-04-04 Thread Jonathan Matthews
On 5 Apr 2014 00:03, "Knut Moe" wrote: > > I just got NginX installed on Ubuntu and was wondering if there is a Web GUI built-in that can be called from the local IP address with some port number? Nginx does not have a GUI built in. It has a status module called stub_status which you can compile

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread c0nw0nk
I think it is a nginx issue it works fine on the localhost and i have full read write and execute access to that hard drive via my remote machine even browsing it and confirm the files exsist nginx keeps saying 404 not found. I think its a bug. Posted at Nginx Forum: http://forum.nginx.org/read.

Web GUI

2014-04-04 Thread Knut Moe
I just got NginX installed on Ubuntu and was wondering if there is a Web GUI built-in that can be called from the local IP address with some port number? Thanks again for your help. ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread c0nw0nk
Yep that is my current config and i still recieve a 404 error accessing my static files jpg, mp4, flv etc. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,249008,249023#msg-249023 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread itpp2012
I did a simple config: server { listen 80; server_name localhost; root Y:/www.mydomain.nl; index index.php index.html index.htm default.html default.htm; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header Host $host; #proxy_pass h

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread Kevin Worthington
I tested it earlier with 1.5.12... Best regards, Kevin -- Kevin Worthington kworthing...@gmail.com http://kevinworthington.com/ http://twitter.com/kworthington On Fri, Apr 4, 2014 at 6:56 PM, c0nw0nk wrote: > Also if it helps my current version of nginx is 1.5.12 > > Posted at Nginx Forum: > h

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread c0nw0nk
Also if it helps my current version of nginx is 1.5.12 Posted at Nginx Forum: http://forum.nginx.org/read.php?2,249008,249019#msg-249019 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread Kevin Worthington
Try: server { listen 80; listen [::]:80; server_name domain.com www.domain.com; # removed lines here... location / { root z:/server/websites/ps/public_www; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $remote_addr; proxy_set_

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread c0nw0nk
Sorry made a mistake and can't edit my previous post. Nginx handles all static content and Apache handles all dynamic content. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,249008,249018#msg-249018 ___ nginx mailing list nginx@nginx.org http

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread c0nw0nk
Here is my config. server { listen 80; listen [::]:80; server_name domain.com www.domain.com; root z:/server/websites/ps/public_www; index index.php index.html index.htm default.html default.htm; location / { root z:/server/websites/ps/public_www; proxy_set_

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread itpp2012
c0nw0nk Wrote: --- > Same issue removed it from the server block i don't think nginx is > compatible with windows network sharing. It is compatible and works perfectly when done properly, post conf and describe how drives are mapped and in which

RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread C0nw0nk W0nky
Same issue removed it from the server block i don't think nginx is compatible with windows network sharing. Subject: Re: Windows | Nginx Mapped Hard Drive | Network Sharing From: kworthing...@gmail.com Date: Fri, 4 Apr 2014 18:08:44 -0400 To: nginx@nginx.org Replied on SO. Mirroring here: Try re

Re: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread Kevin Worthington
Replied on SO. Mirroring here: Try removing the root and index blocks from the server block. Leave it only in the location block. -- Kevin Worthington kworthing...@gmail.com http://kevinworthington.com/ http://twitter.com/kworthington > On Apr 4, 2014, at 6:01 PM, C0nw0nk W0nky wrote: > > >

RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread C0nw0nk W0nky
Thanks for the response i posted my config and tried you way but still no luck nginx delivers dynamic content fine but as for the static content that it should be delivering from the mapped hard drive it just keeps saying 404 not found. Date: Fri, 4 Apr 2014 16:47:55 -0400 Subject: Re: Windows

Re: SSL renegotiation probelm using nginx as reverse proxy to apache

2014-04-04 Thread sean_at_stitcher
Brilliant! Thanks so much, I was pulling my hair out on this one. Just goes to show you... never rely on the apache documentation! Posted at Nginx Forum: http://forum.nginx.org/read.php?2,248982,249012#msg-249012 ___ nginx mailing list nginx@nginx.or

Re: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread itpp2012
Apart from Kevin's answer, if you are running nginx as a service that service must map the drive letter and then start nginx. When you map a drive as a user the service running nginx does not have access to that user-mapped drive. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,249008,24

Re: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread Kevin Worthington
Answered your question here: http://stackoverflow.com/questions/22870814/nginx-mapped-hard-drive-network-sharing/22872717#22872717 Best regards, Kevin -- Kevin Worthington kworthing...@gmail.com http://kevinworthington.com/ http://twitter.com/kworthington On Fri, Apr 4, 2014 at 4:30 PM, C0nw0nk

Re: NginX on Ubuntu 12.04

2014-04-04 Thread Jeroen Ooms
On Fri, Apr 4, 2014 at 12:33 PM, Knut Moe wrote: > Does anyone have updated instructions for 12.04? sudo apt-get install nginx ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread C0nw0nk W0nky
http://stackoverflow.com/questions/22870814/nginx-mapped-hard-drive-network-sharing So i tried sharing my hard drives on windows and serving the content on them from nginx but nginx returns a 404 not found error every time.

RE: NginX on Ubuntu 12.04

2014-04-04 Thread Lukas Tribus
> I am attempting to install NginX on Ubuntu 12.04 using instructions found > from the following link: > > http://wiki.nginx.org/Install > > but I am getting various error messages. > > Does anyone have updated instructions for 12.04? http://nginx.org/en/linux_packages.html#stable

NginX on Ubuntu 12.04

2014-04-04 Thread Knut Moe
I am attempting to install NginX on Ubuntu 12.04 using instructions found from the following link: http://wiki.nginx.org/Install but I am getting various error messages. Does anyone have updated instructions for 12.04? Thanks. ___ nginx mailing list n

Re: testssl.sh - script to test your ssl-setup from cli

2014-04-04 Thread mex
thanx, nice tool! i integrated this into our ssl-guide https://www.mare-system.de/guide-to-nginx-ssl-spdy-hsts/#testing-ssl-setups Posted at Nginx Forum: http://forum.nginx.org/read.php?2,248997,249000#msg-249000 ___ nginx mailing list nginx@nginx.or

Re: testssl.sh - script to test your ssl-setup from cli

2014-04-04 Thread MacLemon
There is also cipherscan by Julien Vehent (with a bunch of patches by mzeltner and me). https://github.com/mzeltner/cipherscan Original repo doesn't yet include our pull request https://github.com/jvehent/cipherscan It works with any *nix or *tux with OpenSSL. (Tested with Debian, OS X, Solari

testssl.sh - script to test your ssl-setup from cli

2014-04-04 Thread mex
web: https://testssl.sh/ repo: https://bitbucket.org/nginx-goodies/testssl.sh testssl.sh is a free Unix command line tool which checks a server's service on any port for the support of TLS/SSL ciphers, protocols as well as some cryptographic flaws. It's designed to provide clear output for a "

Re: map v/s rewrite performance

2014-04-04 Thread rahul286
@Igor Few Updates: > location = old-url-1 { return 301 new-url-1; } is really nice. We can specify 301/302 using it. But I am reading - http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_valid and now I am thining weather to populate config file with 1000's of lines like b

Re: Need help: websocket proxy stops working after a while

2014-04-04 Thread Maxim Dounin
Hello! On Fri, Apr 04, 2014 at 04:20:04AM -0400, phil3361 wrote: > Hi all, > > The WebSocket protocol specification (RFC 6455) defines a _protocol_level_ > keep alive fonctionnality (the protocol defines both a 'ping' and a 'pong' > frame). > > Unfortunately, it seems that nginx doesn't take th

Re: SSL renegotiation probelm using nginx as reverse proxy to apache

2014-04-04 Thread Jonathan Matthews
On 4 Apr 2014 01:57, "sean_at_stitcher" wrote: > I'm not sure I understand why apache wants to renegotiate with nginx, nor > why nginx doesn't seem to want to do it (despite apache thinking it can.) I vaguely recall seeing (on this list) the suggestion that Apache does this (at least) when a requ

Re: Need help: websocket proxy stops working after a while

2014-04-04 Thread phil3361
Hi all, The WebSocket protocol specification (RFC 6455) defines a _protocol_level_ keep alive fonctionnality (the protocol defines both a 'ping' and a 'pong' frame). Unfortunately, it seems that nginx doesn't take these frames into account to reset its timeout watchdog timer so far... so that you