Hello, Jim Ohlstein > On Apr 5, 2016, at 8:43 PM, meteor8488 <nginx-forum@forum.nginx.org> 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 module, this module is still not > working. > > After add below cby Jim Ohlstein - Nginx Mailing List - English
Hello, Those modules are not "necessary" for caching per se. They can be useful for specific situations.. Following a "cookbook recipe" without understanding what the configuration may not be the best idea.by Jim Ohlstein - How to...
-autoindex on; +index echolot.html;by Jim Ohlstein - How to...
You're looking for the autoindex module. See http://nginx.org/en/docs/http/ngx_http_autoindex_module.htm. You can consider looking at the third party fancyindex module if you want something "prettier".by Jim Ohlstein - How to...
Hello, > On Mar 3, 2016, at 11:00 AM, Alt <nginx-forum@forum.nginx.org> 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 > TLS extensionby Jim Ohlstein - Nginx Mailing List - English
You have no default server listening on 443. In such a case, nginx will use the first listed server. See http://nginx.org/en/docs/http/request_processing.html. "Note that default server is a property of the listen port and not of the server name".by Jim Ohlstein - How to...
This works for a static file, yes? So this is a problem with how PHP is being served. Please post more of your configuration, particularly for how you're serving PHP, and the contents of the error log for those requestsby Jim Ohlstein - How to...
Hello, As far as I know, you can't do that. You have to set up SSL with a certificate in nginx. Alternatively, you can use TCP forwarding and skip nginx but you will lose the headers that your backend probably requires. If you must use a proxy, the client will have to connect to the proxy via HTTPS. If your backend is on a trusted internal network, nginx can do the SSL termination and you caby Jim Ohlstein - Other discussion
Hello, > On Mar 1, 2016, at 12:27 PM, Maxim Konovalov <maxim@nginx.com> wrote: > >> On 3/1/16 8:19 PM, Jim Ohlstein wrote: >> Hello, >> >> On Mar 1, 2016, at 9:35 AM, Maxim Konovalov <maxim@nginx.com >> <mailto:maxim@nginx.com>> wrote: >> >>>> On 3/1/16 5:23 PM, Jim Ohlstein wrote: >>>> Hello, >>>>by Jim Ohlstein - Nginx Mailing List - English
Hello, > On Mar 1, 2016, at 9:35 AM, Maxim Konovalov <maxim@nginx.com> 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: >>>> Hello, >>>> >>>>> On 2/28/16 11:22 PM, Ðby Jim Ohlstein - Nginx Mailing List - English
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. >>&gby Jim Ohlstein - Nginx Mailing List - English
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 anything in the configuration? or for a busy server, it's better >> to use accept_mutex instead of reuseport? >> > [..] > > In Freby Jim Ohlstein - Nginx Mailing List - English
I'm confused. You seem to be using two different locations: /business-profile and /business. I think if you really meant for it to be /business, then try: location /business { rewrite ^/business/([^/]*)/([^/]*)$ /business/?id=$1 last; }by Jim Ohlstein - How to...
That's a permission error. I'm not sure what you mean by the two directories are "the same" but I would check the permissions of all of the directories in that path. One of the directories is probably not readable by the nginx user.by Jim Ohlstein - How to...
Hello, On 2/29/16 10:24 AM, Ing. Ricardo SIFON wrote: > Maxim, > > How should I set nginx to avoid writing in the "off" file? > You can set error logging to a different level. See http://nginx.org/en/docs/ngx_core_module.html#error_log. Also, since it seems to be one file, you can use the "log_not_found" directive. See http://nginx.org/en/docs/http/ngx_http_coby Jim Ohlstein - Nginx Mailing List - English
Hello, I'm not sure what kind of redirect service you are using, but I see frames using curl: # curl hanslammerts.nl/phpmyadmin <!DOCTYPE html> <html> <head> <title></title> <meta name='keywords' content=""> <meta name='description' content=""> </head> <frameset rows="100%,*" frameborder="NO"by Jim Ohlstein - How to...
Hello, In order to do so you must enable the ngx_http_realip_module when compiling. See http://nginx.org/en/docs/http/ngx_http_realip_module.html The following is a snippet from a working configuration. This is the front end nginx which passes to a backend nginx running in a jail and listening on 8000: location / { proxy_pass http://10.0.2.7:8000; proxy_set_headerby Jim Ohlstein - How to...
Hello, I'm not certain why you are using fcgiwrap. That is a wrapper for cgi scripts. I'm guessing that you are using php-fpm listening on 127.0.0.1:9000. Unless you are also using some actual cgi scripts (which according to your configuration should be in /usr/lib/cgi-bin), comment out "include /etc/nginx/fcgiwrap.conf; ". You don't need that and it may be setting "fastcgi_paramby Jim Ohlstein - How to...
You should be able to do that, yes. The nginx repo installs what it needs on its own and I'd wager those packages aren't necessary. See what happens when you run "apt-get remove nginx-common". Most likely only those two packages will be removed, leaving nginx-1.8.1 installed.by Jim Ohlstein - How to...
Hello, On 2/22/16 6:46 AM, txt3rob wrote: > Hi, > > I want a PHP file to have the extension of .xml but when i do the below when > accessing the php file via web browser i get a access denied. > > location ~ ^(.+\.xml)(/.*)?$ { > fastcgi_pass unix:/var/run/php5-fpm.sock; > fastcgi_index index.php; > include fastcgi.conf; > } > > do i need to add aby Jim Ohlstein - Nginx Mailing List - English
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=http_ready; >>by Jim Ohlstein - Nginx Mailing List - English
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=http_ready; listen [::]:80 accept_filter=http_ready; listen 443 ssl accept_filter=data_ready; listen [::]:443 ssl accept_filter=data_ready; ... } The correct modules are loaded at boot: # kldstat -v | grep acby Jim Ohlstein - Nginx Mailing List - English
On 2/6/16 1:00 PM, Валентин Бартенев wrote: So if I write: >> >> listen 443 ssl http2; >> >> in a server directive anywhere as dosumneted in >> http://nginx.org/en/docs/http/ngx_http_v2_module.html#example, then >> http2 is enabled in all servers on all IP's even if it's not >> specifically enabled in a listen directive in a particular sby Jim Ohlstein - Nginx Mailing List - English
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 module). In testing I noticed that >> theby Jim Ohlstein - Nginx Mailing List - English
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 module). In testing I noticed that the site was still being served with http2 enabled according to both Chrome and Firefox. I confirmed with curl. I recompiled nginx without any third party modules: # nginx -Vby Jim Ohlstein - Nginx Mailing List - English
Thank you. This has been fixed.by Jim Ohlstein - Site Suggestions
Thanks to the assistance of Sergey Budnevitch and Maxim Konovalov in getting an SSL certificate, the forum is now delivering content via HTTP/2, showcasing this new capability of nginx. Those using browsers from the days before dinosaurs (like IE6 on XP) may have some difficulties reaching the forum. -- Jim Ohlstein "Never argue with a fool, onlookers may not be able to tell the diffby Jim Ohlstein - Nginx Mailing List - English
Thanks to the guys at NGINX, we now have an SSL certificate and are delivering content via HTTP/2 when supported by the client.by Jim Ohlstein - Announcements
Spoken by the self-important, pompous ass "B.R." who has now taken on the title of "guardian of the mailing list". Your referring to Valery as "anonymous" is more than a bit ironic, since you choose to go by initials that may or may not be real and he, like most of us, isn't afraid to use his real name. Pot, kettle, black. Put them in a sentence for me. If youby Jim Ohlstein - Nginx Mailing List - English
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 Ohlstein "Never argue with a fool, onlookers may not be able to teby Jim Ohlstein - Nginx Mailing List - English