Re: Reverse proxy and wireshark
On 6 April 2013 15:27, Larry <nginx-forum@nginx.us> wrote:> Reassuring but everywhere on the web, you can see wireshark sniffing in/out> packet to any server.No you can't.> Hence, they...
View ArticleRe: IPv4 & IPv6
But as I noticed earlier, these configuration directives conflict with eachother across multiple virtual servers...That's a huge step backwards.Having to specify them only once across every...
View ArticleRe: IPv4 & IPv6
Add-on:Besides, as I explained earlier, having generic 'listen' directives impliessome difficulties.For example, I am using 2 virtual servers to serve content for the sameserver_name, one listening on...
View ArticleRe: IPv4 & IPv6
server {listen 80;listen [::]:80 ipv6only=on;server_name one;...}server {listen 443 ssl;listen [::]:443 ssl ipv6only=on;server_name one;...}--Igor Sysoevhttp://nginx.com/services.htmlOn Apr 6, 2013, at...
View ArticleLocation support for multiple URLs
Hello,I would like to use the FastCGI cache feature of nginx for my web application. But I need to use it only for a set of URL.I would like to use it for the following...
View ArticleRe: Reverse proxy and wireshark
Thank you both of you,I admit I started worrying on the basis of wrong information/comprehension.Now it is ok, and I can keep up my nginx config with the x-accel variables.Thanks again, and sincerely...
View ArticleRe: IPv4 & IPv6
That's exactly what I tried first, and if there are multiple serverslistening to same ports, I get the following error:nginx: [emerg] duplicate listen options for [::]:80...
View ArticleRe: IPv4 & IPv6
On 4/6/13 4:05 PM, B.R. wrote:> That's exactly what I tried first, and if there are multiple servers> listening to same ports, I get the following error:> nginx: [emerg] duplicate listen...
View ArticleReverse Proxy with multiple SSL servers
Hi everybody,I'm stuck in a problem and can get it away...I'm in a Virtual environment :1 reverse proxy using nginx (firewall's port 80 and 443 are redirect to him)1 wordpress server using nginx...
View ArticleRe: IPv4 & IPv6
Hello!On Sat, Apr 06, 2013 at 04:05:22PM -0400, B.R. wrote:> That's exactly what I tried first, and if there are multiple servers> listening to same ports, I get the following error:> nginx:...
View ArticleRe: Reverse Proxy with multiple SSL servers
Well... i've type again my severblock file and it's look like it's work now (i don't really understand it's about 10 times i did it ???)for information and help other peoples, these are my serverblock...
View ArticleRe: IPv4 & IPv6
Thanks Maxim !There was a misunderstanding there, I thought I shouldn't use the wholedirective, I didn't get that only the 'ipv6only=on' part was not to berepeated amongst servers.Works great ('of...
View ArticleRe: [PATCH] Make ngx_http_upstream provide a way to expose errors after...
Hello!Below attaches V3 of my patch to make ngx_http_upstream detecttruncated responses. Changes since V2 are as follows:1. Use 502 to call ngx_http_upstream_finalize_request when datatruncation...
View ArticleRe: IPv4 & IPv6
On Apr 7, 2013, at 0:44 , Jim Ohlstein wrote:> This way there is no competition for what is listening on IPv6 addresses> and you should not see that error. I've been doing it this way for at>...
View ArticleHow to display a static header/footer on all pages
So I've been toying around with the echo and addition modules but I'm not finding the best way to accomplish what I'm looking for... Essentially I serve out various content but mostly in the form of...
View ArticleSubdomain with static files besides a Rails app
I have a Rails based API that runs on a backend Nginx server and is stable. The server is not reachable from the outside, it has an Apache as a proxy before it. The API is available via a subdomain:...
View Article403 Forbidden Error
Good Evening,I am looking for an Nginx expert to help me resolve an issue on my website insureandaway.co.uk.The front end of my site is built using Wordpress and is hosted on a seperate server...when...
View ArticleWhat is a default virtualhost?
hello I'm using just nginx as a reverse proxy but I noticed a bit of doubt:1. if I rename the file that I created for my virtualhost from "mysite.conf" to "mysite2.conf", is no longer accessible.2. how...
View ArticleRe: [PATCH] Make ngx_http_upstream provide a way to expose errors after...
Hello!Here attaches the upstream_truncation V4 patch. Changes since V3 are* set u->length to -1 in u->input_filter_init in ngx_uwsgi andngx_scgi because they do not set u->pipe->length...
View ArticleRe: [PATCH] Make ngx_http_upstream provide a way to expose errors after...
Hello!On Sun, Apr 07, 2013 at 04:25:11PM -0700, agentzh wrote:> Here attaches the upstream_truncation V4 patch. Changes since V3 are>> * set u->length to -1 in u->input_filter_init in...
View Article