Re: Multiple certificates in one server block?

2017-08-04 Thread Jim Ohlstein
. As for nginx, it allows multiple certificate definitions if say you have both an ECDSA certificate and a RSA certificate. The only time I've done that is when the domain names matched in the two. -- Jim Ohlstein Professional Mailman Hosting https://mailman-hosting.com signature.asc Desc

Re: FreeBSD Clean Install nginx.pid Permissions Errors

2017-07-14 Thread Jim Ohlstein
wned, and is called upon by nginx as the www user. The > `nginx -t` report is being called by rich, with permissions at 644, so it > should be able to be opened and read. Try calling it using sudo. > > -rw-r--r-- 1 root wheel 4 Jul 13 17:22 nginx.pid > >

Re: Is proxy_cache_purge directive not available in NGINX free version ?

2017-06-21 Thread Jim Ohlstein
ilable in Nginx Free version ? If so it is available in Nginx Plus version ? This functionality is, or was, available as a third party module for the community version. -- Jim Ohlstein Profesional Mailman Hosting https://mailman-hosting.com ___ ngin

Re: Configure Nginx for virtual hosts with same port

2017-06-20 Thread Jim Ohlstein
cgi_params; } } This configuration will never do what you expect. All PHP requests will be handled by the first "php" location. See http://nginx.org/en/docs/http/ngx_http_core_module.html#location. -- Jim Ohlstein Profesional Mailman Hosting https:/

Re: nginx equivalent for ExpiresByType / FilesMatch

2017-06-12 Thread Jim Ohlstein
from All http://nginx.org/en/docs/http/ngx_http_headers_module.html http://nginx.org/en/docs/http/ngx_http_access_module.html -- Jim Ohlstein Profesional Mailman Hosting https://mailman-hosting.com ___ nginx mailing list nginx@nginx.org http

Re: Redirect http:8080 to https:8443

2017-06-05 Thread Jim Ohlstein
ontain the port. Try using: return 301 https://n.example.com:8443$request_uri; -- Jim Ohlstein Professional Mailman Hosting https://mailman-hosting.com/ ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: "server" directive is not allowed here error

2017-06-04 Thread Jim Ohlstein
p" directive is not allowed here in > /usr/local/nginx/conf/sites-enabled/ server.domain.tld -ssl:1 The "http" directive is likely in your main nginx.conf. For testing (not maintenance), you may try putting it all in one file so you can more easily find your error. Likely, a

Re: SSL client certyficage

2017-03-27 Thread Jim Ohlstein
rt of site location ~ /main/site if ($ssl_client_verify != SUCCESS) { return 403; } ... } -- Jim Ohlstein "Never argue with a fool, onlookers may not be able to tell the difference

Re: Forum signup process broken - who admins the forum?

2017-03-17 Thread Jim Ohlstein
Please contact me off-list. Jim Ohlstein > On Mar 17, 2017, at 5:02 AM, Jason In North Hollywood > wrote: > > Hi, > > I absolutely can not sign up at the forum.nginx.org site. I've tried from > many places, my work (a major company) - HK and USA, but no luck. S

Re: proxy_bind

2017-01-18 Thread Jim Ohlstein
http://nginx.org/en/linux_packages.html Posted at Nginx Forum: https://forum.nginx.org/read.php?2,272031,272043#msg-272043 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Basic authentication

2017-01-13 Thread Jim Ohlstein
See http://nginx.org/en/docs/http/ngx_http_core_module.html#location for the order in which location is determined. -- Jim Ohlstein ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: AW: Disabling HTTP/2 for a specific location

2016-08-16 Thread Jim Ohlstein
Hello, On 08/16/16 07:37, Lukas Tribus wrote: I use nginx 1.11.3 with nginx upload module.The problem is that Nginx upload module don't support HTTP/2 and thus when you upload you get 500 Internal Error. Use a dedicated subdomain, like upload.mywebsite.com. This will not work unless the subd

Re: Okay?

2016-06-03 Thread Jim Ohlstein
I could. But I won't. These emails are posted to several websites. If you want them to stop appearing at those sites, stop sending them. I'd also suggest that you consult a psychiatrist and get back on your medication. Jim Ohlstein > On Jun 3, 2016, at 2:36 PM, Thaís Dauto

Re: Problem

2016-06-02 Thread Jim Ohlstein
You're really pretty dense but I'll try. You're in the wrong place. There. That's it. We don't know why someone put information on THEIR website. Try figuring out who actually hosts it, and complain to them. We can't help you so please stop bothering us. Jim

Re: Anyone running OSTicket with Nginx?

2016-05-11 Thread Jim Ohlstein
Hello, > On May 11, 2016, at 5:36 PM, Alex Hall wrote: > > The output of > sudo ps aux | grep php > > admin16599 0.0 0.0 12728 2164 pts/0S+ 21:34 0:00 grep php > root 18852 0.0 0.6 295568 24484 ?Ss May09 0:08 php-fpm: > master process (/etc/php5/fpm/php-fpm.co

Re: Anyone running OSTicket with Nginx?

2016-05-11 Thread Jim Ohlstein
Hello, > On May 11, 2016, at 5:19 PM, Alex Hall wrote: > > > >> On Wed, May 11, 2016 at 5:04 PM, Jim Ohlstein wrote: >> Hello, >> >> On May 11, 2016, at 4:54 PM, Alex Hall wrote: >> >>> >>> >>>> On Wed, May 11, 201

Re: Anyone running OSTicket with Nginx?

2016-05-11 Thread Jim Ohlstein
Hello, > On May 11, 2016, at 4:54 PM, Alex Hall wrote: > > > >> On Wed, May 11, 2016 at 4:50 PM, Jim Ohlstein wrote: >> Hello, > > Is it possible that your script is trying to write a configuration file and > > lacks proper > permission in that dire

Re: Anyone running OSTicket with Nginx?

2016-05-11 Thread Jim Ohlstein
Hello, > On May 11, 2016, at 4:26 PM, Alex Hall wrote: > > Thanks for the quick response. Unfortunately, I'm not having any luck, unless > I mistyped one of the rules. I also can't find where errors go. Anyone know > where, or if, errors in fastcgi/php5-fpm are logged? /var/log/php5-fpm.log is

Re: How to turn off DNS caching

2016-05-04 Thread Jim Ohlstein
Hello, On May 4, 2016, at 7:12 AM, Sem wrote: > Hi, > > I am trying to connect to my AWS RDS (mysql) instance using the AWS supplied > DNS endpoint. > > The problem is, the IP of the instance changes periodically. > > It appears that nginx does not resolve the DNS name every time, but cac

Re: Port redirect in URL

2016-04-21 Thread Jim Ohlstein
Hello, On 4/21/16 10:55 AM, Francis Daly wrote: On Thu, Apr 21, 2016 at 10:41:24AM -0400, Jim Ohlstein wrote: On 4/21/16 10:17 AM, Igor Sysoev wrote: On 21 Apr 2016, at 17:09, Jim Ohlstein wrote: Hi there, location / { proxy_pass http://10.0.250.37:8000; proxy_set_header

Re: Port redirect in URL

2016-04-21 Thread Jim Ohlstein
Hello, On 4/21/16 10:51 AM, Igor Sysoev wrote: On 21 Apr 2016, at 17:41, Jim Ohlstein wrote: Hello, On 4/21/16 10:17 AM, Igor Sysoev wrote: On 21 Apr 2016, at 17:14, Igor Sysoev wrote: On 21 Apr 2016, at 17:09, Jim Ohlstein wrote: Hello, I'm going a bit crazy here and hopin

Re: Port redirect in URL

2016-04-21 Thread Jim Ohlstein
Hello, On 4/21/16 10:17 AM, Igor Sysoev wrote: On 21 Apr 2016, at 17:14, Igor Sysoev wrote: On 21 Apr 2016, at 17:09, Jim Ohlstein wrote: Hello, I'm going a bit crazy here and hoping for some help. I've set up a new Mailman installation on FreeBSD. The system is set as fol

Re: Port redirect in URL

2016-04-21 Thread Jim Ohlstein
Hello, On 4/21/16 10:14 AM, Igor Sysoev wrote: On 21 Apr 2016, at 17:09, Jim Ohlstein wrote: Hello, I'm going a bit crazy here and hoping for some help. I've set up a new Mailman installation on FreeBSD. The system is set as follows: Web <-> nginx SSL termination a

Port redirect in URL

2016-04-21 Thread Jim Ohlstein
. Any help would be appreciated. -- Jim Ohlstein "Never argue with a fool, onlookers may not be able to tell the difference." - Mark Twain ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Headers More module is not working in nginx-devel

2016-04-06 Thread Jim Ohlstein
/usr/local/etc/nginx/nginx.conf-dist and it will show all the modules that have been built and need to be loaded dynamically if used. -- Jim Ohlstein "Never argue with a fool, onlookers may not be able to tell the difference." - Mark Twain _

Re: Headers More module is not working in nginx-devel

2016-04-05 Thread Jim Ohlstein
Hello, Jim Ohlstein > On Apr 5, 2016, at 8:43 PM, meteor8488 wrote: > > Hi All, > > I'm using FreeBSD with nginx-devel. It seems that this problem is lasting > for a long time (at least start from nginx 1.9.10 ). > > Even though I built the source with this mod

Re: Nginx 1.9.11 and OpenSSL 1.0.2G - HTTP2, but no ALPN negotiated.

2016-03-03 Thread Jim Ohlstein
Hello, > On Mar 3, 2016, at 11:00 AM, Alt wrote: > > Hello, > > "In most cases HTTP/2 with NPN in OpenSSL 1.0.1 will work for now.", yes, > for now, sadly Google will remove the NPN support in Chrome "soon": "We plan > to remove support for SPDY in early 2016, and to also remove support for the

Re: enable reuseport then only one worker is working?

2016-03-01 Thread Jim Ohlstein
Hello, > On Mar 1, 2016, at 12:27 PM, Maxim Konovalov wrote: > >> On 3/1/16 8:19 PM, Jim Ohlstein wrote: >> Hello, >> >> On Mar 1, 2016, at 9:35 AM, Maxim Konovalov > <mailto:ma...@nginx.com>> wrote: >> >>>> On 3/1/16 5:23 PM, J

Re: enable reuseport then only one worker is working?

2016-03-01 Thread Jim Ohlstein
Hello, > On Mar 1, 2016, at 9:35 AM, Maxim Konovalov wrote: > >> On 3/1/16 5:23 PM, Jim Ohlstein wrote: >> Hello, >> >>> On 3/1/16 8:34 AM, Andrew Hutchings wrote: >>> Hi Jim, >>> >>>> On 01/03/16 13:10, Jim Ohlstein wrote: >&

Re: enable reuseport then only one worker is working?

2016-03-01 Thread Jim Ohlstein
Hello, On 3/1/16 8:34 AM, Andrew Hutchings wrote: Hi Jim, On 01/03/16 13:10, Jim Ohlstein wrote: Hello, On 2/28/16 11:22 PM, Валентин Бартенев wrote: On Sunday 28 February 2016 08:52:12 meteor8488 wrote: Hi All, I just upgrade Nginx from 1.8 o 1.9 on my FreeBSD box. [..] Did I miss

Re: enable reuseport then only one worker is working?

2016-03-01 Thread Jim Ohlstein
eport? [..] In FreeBSD the SO_REUSEPORT option has completely different behavior and shouldn't be enabled in nginx. Should the configruation option then be disabled or silently ignored in FreeBSD at this time? -- Jim Ohlstein "Never argue with a fool, onlookers may not be a

Re: Problem with error file

2016-02-29 Thread Jim Ohlstein
s in "off" in config file. The file that I have problems is called: off (without extensión) in C:\nginx. So no problem here, nginx works exactly as you've configured it, writes errors to the file named "off". If you want it to work differently - configure it differen

Re: .XML running PHP getting 403

2016-02-22 Thread Jim Ohlstein
here, like: security.limit_extensions = .php .xml -- Jim Ohlstein "Never argue with a fool, onlookers may not be able to tell the difference." - Mark Twain ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: accept_filter being ignored

2016-02-19 Thread Jim Ohlstein
Hello, On 2/19/16 5:18 AM, Maxim Konovalov wrote: Hi Jim, On 2/19/16 12:19 AM, Jim Ohlstein wrote: Hello, Not sure if I should be directing this to a FreeBSD list or here, but here goes. I have set accept_filter= in listen directives: server { listen 80 accept_filter

accept_filter being ignored

2016-02-18 Thread Jim Ohlstein
d, ignored (2: No such file or directory) 2016/02/18 16:04:06 [alert] 823#100446: setsockopt(SO_ACCEPTFILTER, "data_ready") for [::]:443 failed, ignored (2: No such file or directory) Box is running FreeBSD 10-STABLE. Any hints? -- Jim Ohlstein "Never argue with a fool, onlo

Re: Possible bug http2 module

2016-02-06 Thread Jim Ohlstein
ck), or on any single IP (via "listen 1.2.3.4:443 ssl http2;"), enables http2 on ALL vhosts using SSL, either globally or on that specific IP. If this is not the desired behavior use one IP for vhosts using http2 and a different IP for vhosts using SSL but for which you do not want to enable

Re: Possible bug http2 module

2016-02-06 Thread Jim Ohlstein
On 2/6/16 12:22 PM, Валентин Бартенев wrote: On Saturday 06 February 2016 12:13:52 Jim Ohlstein wrote: Hello, I am running a WordPress multisite install and recently turned off http2 on the domain in order to use a third party module which evidently doesn't play nicely with http2 (echo m

Possible bug http2 module

2016-02-06 Thread Jim Ohlstein
workaround is to place this domain on an IPv4 in which there are no http2 sites. More permanent solution should be considered. -- Jim Ohlstein "Never argue with a fool, onlookers may not be able to tell the difference." - Mark Twain _

nginx forum now delivering content via HTTP/2

2015-10-15 Thread Jim Ohlstein
the forum. -- Jim Ohlstein "Never argue with a fool, onlookers may not be able to tell the difference." - Mark Twain ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: [Announcement] New book about Nginx

2015-08-27 Thread Jim Ohlstein
:nginx@nginx.org> http://mailman.nginx.org/mailman/listinfo/nginx ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx -- Jim Ohlstein "Never argue with a fool, onlookers may not be able to tell the difference." - Mark Twain _

Re: How to write nginx, NGINX or Nginx ?

2014-12-30 Thread Jim Ohlstein
Hello, On 12/30/14 9:43 AM, Patrick Nommensen wrote: Hi Simone, When it's about the company [1] use “Nginx" and when it’s about the software use “NGINX". We’ll look to resolve present inconsistencies. [1] http://nginx.com/company/ See also http://nginx.org/ -- Jim Oh

Re: How to write nginx, NGINX or Nginx ?

2014-12-30 Thread Jim Ohlstein
hing, I've been using nginx since the 0.6.x line, and subscribing to this list since then as well. Igor has (or had) *always* spelled the software "nginx" [0]. This was the case when he was active on this list as well. [0] http://sysoev.ru/en/ -- Jim Ohlstein "Never argu

Re: use subdirectories instead of subdomains

2014-04-25 Thread Jim Ohlstein
Hello, On 4/25/14, 3:59 PM, Thuban wrote: * Jim Ohlstein le [25-04-2014 14:17:33 -0400]: Hello, On 4/25/14, 1:17 PM, Thuban wrote: [snip] I'm still not sure you've actually given a reason why you need an alias. Infact, I don't have a good reason for using alias, I

Re: use subdirectories instead of subdomains

2014-04-25 Thread Jim Ohlstein
ions, you can nest some if you want, but consider reading this thread about nested locations: http://forum.nginx.org/read.php?2,174517,174517. -- Jim Ohlstein "Never argue with a fool, onlookers may not be able to tell the difference." - Mark Twain ___

Re: use subdirectories instead of subdomains

2014-04-25 Thread Jim Ohlstein
www/mysite then location /owncloud would be interpreted as /var/www/mysite/owncloud which I'm guessing is what you want. -- Jim Ohlstein "Never argue with a fool, onlookers may not be able to tell the difference." - Mark Twain ___ ngin

Re: OpenSSL leaks server-Keys / The Heartbleed Bug

2014-04-11 Thread Jim Ohlstein
ning while the rest of us were left vulnerable. Just sayin... -- Jim Ohlstein "Never argue with a fool, onlookers may not be able to tell the difference." - Mark Twain ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Nginx forum returns 502 (2014-03-25T08:13Z)

2014-03-26 Thread Jim Ohlstein
Hello, On 3/26/14, 10:02 AM, itpp2012 wrote: Maybe you need to switch over to nginx :) Haha. Did I miss the announcement that someone wrote a PHP handler for nginx? ;) Seriously, perhaps you misunderstood, or perhaps, as I suspect, this is a joke. I am using nginx (1.5.12). -- Jim

Re: Nginx forum returns 502 (2014-03-25T08:13Z)

2014-03-26 Thread Jim Ohlstein
const char *hostvalue; if ((hostvalue = apr_table_get(r->headers_in, "X-Forwarded-Host"))) { Thank you Bruno! I will try this a bit later, when things have settled down here. -- Jim Ohlstein "Never argue with a fool, onlookers may not b

Re: Nginx forum returns 502 (2014-03-25T08:13Z)

2014-03-26 Thread Jim Ohlstein
hp?2,108162 That's not the case. Not even close to out of resources. The FPM children are there, they're "listening", they're just not "hearing". -- Jim Ohlstein "Never argue with a fool, onlookers may not be able to tell the difference." - M

Re: Nginx forum returns 502 (2014-03-25T08:13Z)

2014-03-26 Thread Jim Ohlstein
Hello, On 3/25/14, 6:50 PM, Jonathan Matthews wrote: On 25 March 2014 21:17, Jim Ohlstein wrote: [what does] that "T08:13Z" mean The Z suffix indicates UTC, as per section 2 of http://www.ietf.org/rfc/rfc3339.txt. HTH, Jonathan Thank you for educating me. It's a busy se

Re: Nginx forum returns 502 (2014-03-25T08:13Z)

2014-03-25 Thread Jim Ohlstein
for main content is correctly set. If I can be of any further help... -- Jim Ohlstein "Never argue with a fool, onlookers may not be able to tell the difference." - Mark Twain ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Nginx forum returns 502 (2014-03-25T08:13Z)

2014-03-25 Thread Jim Ohlstein
fault in the upstream about 14 minutes before this was sent but that was restarted automatically, and long before I woke up. Other than that, without more specific information (exact request, IP, approximate time), it's hard to say much. All seems to be functioning as expected. -- J

Re: rewrite except one directory

2014-02-16 Thread Jim Ohlstein
; } } -- Jim Ohlstein "Never argue with a fool, onlookers may not be able to tell the difference." - Mark Twain ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Upgraded to 1.5.10 - Site Still SPDY/2?

2014-02-04 Thread Jim Ohlstein
binary? Or am I missing something else? HUP reloads the configuration. USR2 upgrades the binary. -- Jim Ohlstein "Never argue with a fool, onlookers may not be able to tell the difference." - Mark Twain ___ nginx mailing list nginx

Re: [OpenResty] How to start Nginx?

2014-01-24 Thread Jim Ohlstein
gram, and testing it that way. Once you are convinced that it behaves as expected for your use case, you can install it and try it in production. -- Jim Ohlstein ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Nginx as reverse Proxy, remove X-Frame-Options header

2014-01-09 Thread Jim Ohlstein
Hello, On 1/9/14, 12:14 PM, nano wrote: On 10/01/2014 2:21 AM, Jim Ohlstein wrote: Hello, On 1/9/14, 7:24 AM, nano wrote: [snip] I share your opinion regarding nginx documentation. It is woeful. Particularly when compared to other exemplary open source projects, such as Postfix and

Re: PHP below server root not served

2014-01-09 Thread Jim Ohlstein
# access_log off;# optional location ~ \.php$ { fastcgi_pass ...; include fastcgi_params; fastcgi_index index.php; fastcgi_param HTTPS on; } } } [0] http://ngin

Re: Nginx as reverse Proxy, remove X-Frame-Options header

2014-01-09 Thread Jim Ohlstein
e was little to none. Sure, it had a bit more hand holding, but it really has become superfluous at least in terms of providing up to date documentation, at least IMMHO. -- Jim Ohlstein ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: connect() to 127.0.0.1:80 failed (99: Cannot assign requested address

2013-07-15 Thread Jim Ohlstein
ing list. You need to do some of the work yourself. -- Jim Ohlstein ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Add [nginx] to subject lines on this mailing list?

2013-05-16 Thread Jim Ohlstein
find it hard to figure out why someone unknown is writing me about "bug?", and often find the list emails in my junk mail folder. I'd like to have the setting turned back on; would that be OK? > Doesn't List-Id header suit your needs? -- Maxim Konovalov +7 (910) 4293178 ht

Re: [crit] 16665#0 unlink()

2013-05-06 Thread Jim Ohlstein
On 05/06/13 09:54, Maxim Dounin wrote: Hello! On Mon, May 06, 2013 at 09:01:45AM -0400, Jim Ohlstein wrote: On 05/05/13 16:32, Maxim Dounin wrote: Hello! On Sat, May 04, 2013 at 07:08:55PM -0400, Jim Ohlstein wrote: [...] I have just seen a similar situation using fastcgi cache. In my

Re: [crit] 16665#0 unlink()

2013-05-06 Thread Jim Ohlstein
On 05/05/13 16:32, Maxim Dounin wrote: Hello! On Sat, May 04, 2013 at 07:08:55PM -0400, Jim Ohlstein wrote: [...] I have just seen a similar situation using fastcgi cache. In my case I am using the same cache (but only one cache) for several server/location blocks. The system is a fairly

Re: [crit] 16665#0 unlink()

2013-05-04 Thread Jim Ohlstein
f08bc0a52623932e7" failed (2: No such file or directory) 2013/05/04 17:54:25 [crit] 65304#0: unlink() "/var/nginx/fcgi_cache/7/2e/68ff8b00492991a2e3ba5ad7420d42e7" failed (2: No such file or directory) 2013/05/04 17:54:25 [crit] 65304#0: unlink() "/var/nginx/fcgi_cache/

Re: nginx-1.4.0

2013-04-27 Thread Jim Ohlstein
On Apr 27, 2013, at 3:59 PM, "itpp2012" wrote: > Hello Maxim, > > Can you tell us the status with the branches ? > Is 1.3 now the new stable ? (what is then the status of 1.2 ?) > Is 1.4 development ? > > Should all 1.2 users upgrade to 1.3 ? > > http://nginx.org/ Jim Ohlstein__

Re: IPv4 & IPv6

2013-04-06 Thread Jim Ohlstein
o ss -lnp|grep nginx >> > 0 128 :::80 >> > :::* users:(("nginx",***,11),("nginx",***,11)) >> > 0 128 :::443 >> > :::* users: