Re: How can I sync nginx.conf in two keepalived server?

2024-01-30 Thread Jason Anderson via nginx
s fine. > > But I had some new questions here: > 1st, When I edited the nginx.conf in master server, how to transfer the > conf file to backup server immediately? > 2nd, And after I edited , I should run 'nginx -s reload' in the master > server, how can backup server do the s

How can I sync nginx.conf in two keepalived server?

2024-01-30 Thread baalchina
Hi, all. I had just deploy two nginx servers and made them high-available using keepalived. I tested it, and HA works fine. But I had some new questions here: 1st, When I edited the nginx.conf in master server, how to transfer the conf file to backup server immediately? 2nd, And after I edited

Re: Error: nginx: [emerg] unknown directive "stream" in /etc/nginx/nginx.conf:11

2023-12-07 Thread Roman Arutyunyan
aarch64 GNU/Linux. > While using the stream option on target the below error is coming. > > Error: nginx: [emerg] unknown directive "stream" in /etc/nginx/nginx.conf:11 > Attached the nginx.conf file for reference. > nginx -V > nginx version: nginx/1.20.1 > bu

Error: nginx: [emerg] unknown directive "stream" in /etc/nginx/nginx.conf:11

2023-12-07 Thread Gandla, Kesavardhana via nginx
nown directive "stream" in /etc/nginx/nginx.conf:11 Attached the nginx.conf file for reference. nginx -V nginx version: nginx/1.20.1 built with OpenSSL 3.0.7 1 Nov 2022 TLS SNI support enabled configure arguments: --crossbuild=Linux:aarch64 --with-endian=little --with-int=4 --with-long=8 --

Re: duplicate ports across servers in nginx.conf

2023-05-31 Thread Francis Daly
On Wed, May 31, 2023 at 06:14:41AM +, Yuval Abadi via nginx wrote: Hi there, I don't speak for the project, but my guess is: > If the configuration has 2 servers sharing the same name and the same port > I got this warning: > "nginx: [warn] conflicting server name "http://www.mut.com/"; on 0

RE: duplicate ports across servers in nginx.conf

2023-05-30 Thread Yuval Abadi via nginx
Abadi via nginx Subject: Re: duplicate ports across servers in nginx.conf EXTERNAL MAIL: nginx-boun...@nginx.org On Tue, May 30, 2023 at 06:50:19AM +, Yuval Abadi via nginx wrote: Hi there, > When I have 2 servers in nginx.conf with same listen port if the server > have name, ngi

Re: duplicate ports across servers in nginx.conf

2023-05-30 Thread Francis Daly
On Tue, May 30, 2023 at 06:50:19AM +, Yuval Abadi via nginx wrote: Hi there, > When I have 2 servers in nginx.conf with same listen port if the server > have name, nginx issue warning ignore … but nit failed to load. > What happens is only the first server in conf binds t

duplicate ports across servers in nginx.conf

2023-05-29 Thread Yuval Abadi via nginx
Hi When I have 2 servers in nginx.conf with same listen port if the server have name, nginx issue warning ignore … but nit failed to load. What happens is only the first server in conf binds the socket. And worse, If no server names I did not get a warning. Only if the keyword “default

Re: Help with nginx.conf

2022-11-11 Thread Jeffrey Walton
Nginx.org but the source were get from nginx too (i think) and cases like nginx.conf is happening, different files with ngonx.org and other sources and for example that directories like sites-available and sites-enabled are missing after installation: > e.g. /etc/nginx/sites-available and /etc/nginx/s

RE: Help with nginx.conf

2022-11-11 Thread Reinis Rozitis
> in a network that is using Nginx as Proxy Reverse since some years, the > nginx.conf file is like this include with Nginx-1.23.2 and that file appears > like this.. > > The second file is Nginx directly from Nginx.org, my question is, Why that > difference between both file

Help with nginx.conf

2022-11-11 Thread Gus Flowers Starkiller
Hi people of Nginx, I hope you're ok. Please i Hope you can help me with this, in a network that is using Nginx as Proxy Reverse since some years, the nginx.conf file is like this include with Nginx-1.23.2 and that file appears like this.. user www-data; worker_processes auto; pid /run/ngin

Question about rewrite in nginx.conf using a variable ?

2021-12-11 Thread Stephen D. Scotti, M.D.
I have a configuration for a Docker NGINX container that works OK with my 'static' configuration, but I’d like to maybe use a variable in the proxy rewrite to avoid have to duplicate a location block for the server. A sample Static setup with some of the extra stuff removed is shown below. That

REQ: NGINX LDAP Password Masking (nginx.conf)

2021-06-04 Thread Naveen Amresh
Hi Nginx Support Team, I would like to get assistance in Nginx LDAP bindn password masking in nginx.conf file. Thanks & Regards - Naveen ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: nginx 1.18.0 implicitly enables TLS 1.3 (with only "ssl_protocols TLSv1.2; " in nginx.conf config)

2020-12-01 Thread Sergey Kandaurov
t;>> 1.18.0 linked against LibreSSL 3.3.0) and on Ubuntu 20.04 (nginx 1.18.0 >>>>> linked against OpenSSL 1.1.1f). I don't know which release of nginx >>>>> introduced this bug. >>>>> >>>>> From nginx.conf: >>>

Re: nginx 1.18.0 implicitly enables TLS 1.3 (with only "ssl_protocols TLSv1.2; " in nginx.conf config)

2020-12-01 Thread Andreas Bartelt
even if not configured to do so. I've observed this behavior on OpenBSD with (nginx 1.18.0 linked against LibreSSL 3.3.0) and on Ubuntu 20.04 (nginx 1.18.0 linked against OpenSSL 1.1.1f). I don't know which release of nginx introduced this bug. From nginx.conf: ssl_protocols TLS

Re: nginx 1.18.0 implicitly enables TLS 1.3 (with only "ssl_protocols TLSv1.2; " in nginx.conf config)

2020-11-30 Thread Maxim Dounin
ables TLS 1.3 even if not > >> configured to do so. I've observed this behavior on OpenBSD with (nginx > >> 1.18.0 linked against LibreSSL 3.3.0) and on Ubuntu 20.04 (nginx 1.18.0 > >> linked against OpenSSL 1.1.1f). I don't know which release of nginx >

Re: nginx 1.18.0 implicitly enables TLS 1.3 (with only "ssl_protocols TLSv1.2; " in nginx.conf config)

2020-11-30 Thread Andreas Bartelt
eSSL 3.3.0) and on Ubuntu 20.04 (nginx 1.18.0 linked against OpenSSL 1.1.1f). I don't know which release of nginx introduced this bug. From nginx.conf: ssl_protocols TLSv1.2; --> in my understanding, this config statement should only enable TLS 1.2 but not TLS 1.3. However, the observed be

Re: nginx 1.18.0 implicitly enables TLS 1.3 (with only "ssl_protocols TLSv1.2; " in nginx.conf config)

2020-11-30 Thread Maxim Dounin
20.04 (nginx 1.18.0 > linked against OpenSSL 1.1.1f). I don't know which release of nginx > introduced this bug. > > From nginx.conf: > ssl_protocols TLSv1.2; > --> in my understanding, this config statement should only enable TLS > 1.2 but not TLS 1.3. However, the ob

Re: nginx 1.18.0 implicitly enables TLS 1.3 (with only "ssl_protocols TLSv1.2; " in nginx.conf config)

2020-11-30 Thread Andreas Bartelt
nBSD/nginx setup with the same nginx.conf. As I've previously indicated, I've also observed the same problem on a fully patched Ubuntu 20.04 system with nginx 1.18.0/OpenSSL 1.1.1f -- I'm not sure if this was a misunderstanding since you wrote in past tense regarding problems wit

RE: nginx 1.18.0 implicitly enables TLS 1.3 (with only "ssl_protocols TLSv1.2; " in nginx.conf config)

2020-11-29 Thread Thomas Ward
axy Note10+. Original message From: ng...@bartelt.name Date: 11/29/20 10:01 (GMT-05:00) To: nginx@nginx.org Subject: nginx 1.18.0 implicitly enables TLS 1.3 (with only "ssl_protocols TLSv1.2; " in nginx.conf config) Hello,I've noticed that nginx 1.18.0 always en

nginx 1.18.0 implicitly enables TLS 1.3 (with only "ssl_protocols TLSv1.2; " in nginx.conf config)

2020-11-29 Thread nginx
elease of nginx introduced this bug. From nginx.conf: ssl_protocols TLSv1.2; --> in my understanding, this config statement should only enable TLS 1.2 but not TLS 1.3. However, the observed behavior is that TLS 1.3 is implicitly enabled in addition to TLS 1.2. Best regards Andreas # nginx -V ng

RE: a duplicate default server for 0.0.0.0:80 in /etc/nginx/nginx.conf:39

2020-11-26 Thread Reinis Rozitis
> Is there a way to enable redirect from port 80 to 443 for both > /etc/nginx/conf.d/onetest.conf and /etc/nginx/nginx.conf files. Any help > will be highly appreciated. You can have only one default_server per listen port. It will be the used if a client makes a request not mat

Re: a duplicate default server for 0.0.0.0:80 in /etc/nginx/nginx.conf:39

2020-11-25 Thread Kaushal Shriyan
On Tue, Nov 24, 2020 at 11:40 PM Kaushal Shriyan wrote: > Hi, > > I have two nginx.conf file /etc/nginx/conf.d/onetest.conf > and /etc/nginx/nginx.conf. Basically the first config file works without > any issue while redirecting from port 80 to 443. I want to enable the port >

a duplicate default server for 0.0.0.0:80 in /etc/nginx/nginx.conf:39

2020-11-24 Thread Kaushal Shriyan
Hi, I have two nginx.conf file /etc/nginx/conf.d/onetest.conf and /etc/nginx/nginx.conf. Basically the first config file works without any issue while redirecting from port 80 to 443. I want to enable the port redirect from port 80 to 443 in /etc/nginx/nginx.conf. when I add the below block in

Re: nginx.conf-2018

2018-10-29 Thread Maxim Konovalov
On 28/08/2018 19:37, Maxim Konovalov wrote: > Hello, > > As some of you probably know we are doing a conference in Atlanta in > October 8 - 11 this year. You can find its full agenda here: > > https://www.nginx.com/nginxconf/2018/agenda/ > [...] Here is a channel where you can find videos from

nginx.conf-2018

2018-08-28 Thread Maxim Konovalov
Hello, As some of you probably know we are doing a conference in Atlanta in October 8 - 11 this year. You can find its full agenda here: https://www.nginx.com/nginxconf/2018/agenda/ I'd like to draw special attention to nginx dev training that Roman and Valentin are doing on the day 0 and day 3.

Conference nginx.conf 2017 CFP deadline is May 25

2017-05-22 Thread Nick Shadrin
There are just a few days left to submit your talk proposals for nginx.conf 2017, and we want to hear from you! How are you using NGINX or NGINX Plus to help you achieve performance, security, reliability, and scale? Whether you're deploying your app in the cloud, on bare metal, or somewhe

nginx.conf 2017: Call For Papers Now Open – Submit a Talk!

2017-04-11 Thread Shirley Bailes
Hello NGINX community – We’re excited to announce that the call for proposals for the fourth NGINX conference, nginx.conf 2017 <https://www.nginx.com/nginxconf/> is open. Please submit a talk, and share the CFP <https://nginxconf17.busyconf.com/proposals/new> with those you know w

Re: nginx.conf

2016-12-17 Thread xstation
thanks for your reply seems to have problems but just have to leave it for time being just comment out the lines refering to spider etc and hopes it restarts. many thanks for sugestions try to brush up on my knowledage base Posted at Nginx Forum: https://forum.nginx.org/read.php?2,271581,271628#

Re: nginx.conf

2016-12-16 Thread lists
me like the conf file can't be parsed due to mismatches.   Original Message   From: xstation Sent: Friday, December 16, 2016 12:45 AM To: nginx@nginx.org Reply To: nginx@nginx.org Subject: Re: nginx.conf Here is full conf user www-data; worker_processes 4; pid /run/nginx.pid; e

Re: nginx.conf

2016-12-16 Thread xstation
Here is full conf user www-data; worker_processes 4; pid /run/nginx.pid; events { worker_connections 768; # multi_accept on; } http { ## # Basic Settings ## sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65

Re: nginx.conf

2016-12-15 Thread c0nw0nk
Provide your full config please. Also this error log. [emerg] "if" directive is not allowed here That means you put the code I provided in a invalid area I would assume not between location {} or server {} tags as I said. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,271581,271586#ms

Re: nginx.conf

2016-12-15 Thread lists
eyeballs, no need to view the site.   Original Message   From: xstation Sent: Thursday, December 15, 2016 10:35 PM To: nginx@nginx.org Reply To: nginx@nginx.org Subject: Re: nginx.conf If I delete the if! I get an error root@mail:~# nginx -t -c /etc/nginx/nginx.conf nginx: [emerg] unknown dir

Re: nginx.conf

2016-12-15 Thread xstation
If I delete the if! I get an error root@mail:~# nginx -t -c /etc/nginx/nginx.conf nginx: [emerg] unknown directive "($http_user_agent" in /etc/nginx/nginx.conf:82 nginx: configuration file /etc/nginx/nginx.conf test failed Posted at Nginx Forum: https://forum.nginx.org/read.php?2,271

Re: nginx.conf

2016-12-15 Thread xstation
thanks for fast reply# here is what I get root@mail:~# nginx -t -c /etc/nginx/nginx.conf nginx: [emerg] "if" directive is not allowed here in /etc/nginx/nginx.conf:82 nginx: configuration file /etc/nginx/nginx.conf test failed so 'if' should be deleted? Posted at

Re: nginx.conf

2016-12-15 Thread c0nw0nk
xstation Wrote: --- > eneted this in the conf file under http > > SetEnvIfNoCase User-Agent "^Baiduspider" block_bot > Order Allow,Deny > Allow from All > Deny from env=block_bot > > > but on restart got a error message > > Job for nginx.serv

nginx.conf

2016-12-15 Thread xstation
eneted this in the conf file under http SetEnvIfNoCase User-Agent "^Baiduspider" block_bot Order Allow,Deny Allow from All Deny from env=block_bot but on restart got a error message Job for nginx.service failed. See 'systemctl status nginx.service' and 'journalctl -xn' for details. root@mail:~

Join us next month at nginx.conf 2016

2016-08-24 Thread Shirley Bailes
Hello all! We hope that you’ll join us next month for the upcoming NGINX user conference, nginx.conf 2016 <https://www.nginx.com/nginxconf/>, September 7-9 at the Hilton Austin in Austin,Texas. There are a lot of amazing talks from people like you who are building cool shi+ with NGINX

nginx.conf schedule posted for 2016, September 7-9 in Austin, TX

2016-07-26 Thread Shirley Bailes
Hello all! The NGINX user conference, nginx.conf 2016 is coming soon: September 7-9 @ the Hilton Hotel in Austin, TX. nginx.conf 2016 starts with NGINX experts presenting product roadmaps and technical deep dives. Then listen to use cases from companies like Adobe, Datadog, MuleSoft, Spotify

Re: "pid" directive is duplicate in /etc/nginx/nginx.conf

2016-06-03 Thread Kurt Cancemi
Hello, See here https://bugs.archlinux.org/task/46500. Kurt Cancemi https://www.x64architecture.com > On Jun 2, 2016, at 04:01, Harkonnen wrote: > > Hi, > > I'm trying to set up a very simple nginx web server on top of an archlinux > distribution. Here is my

Re: "pid" directive is duplicate in /etc/nginx/nginx.conf

2016-06-03 Thread Kurt Cancemi
imple nginx web server on top of an archlinux > distribution. Here is my nginx.conf : > > user http; > worker_processes1; > error_log /var/log/nginx/error.log; > pid/var/run/nginx.pid; > >

"pid" directive is duplicate in /etc/nginx/nginx.conf

2016-06-03 Thread Harkonnen
Hi, I'm trying to set up a very simple nginx web server on top of an archlinux distribution. Here is my nginx.conf : user http; worker_processes1; error_log /var/log/nginx/error.log; pid/var/run/nginx.pid; e

nginx.conf 2016: CFP Closing Soon, Submit Your Talk Today

2016-05-01 Thread Shirley Bailes
Hello folks, The deadline to submit a proposal to nginx.conf 2016 <https://www.nginx.com/nginxconf/> is quickly approaching. Share your NGINX stories with us: https://nginxconf16.busyconf.com/proposals/new/ *Deadline to submit: 11:59PM CDT, May 5, 2016.* Tell us how you’re using NGINX

nginx.conf 2016: CFP Now Open – Submit a Proposal!

2016-04-05 Thread Shirley Bailes
Hello all! We’re excited to announce that the call for proposals for the third NGINX conference, nginx.conf 2016 <https://www.nginx.com/nginxconf/> is open. Please submit a talk, and share the CFP with those you know who have good NGINX stories to share: https://nginxconf16.busyconf.com/pro

Using 32768KiB of shared memory for push module in /etc/nginx/nginx.conf:64

2015-12-16 Thread juanin
_stream_shared_memory_size" in /etc/nginx/nginx.conf:40 Posted at Nginx Forum: https://forum.nginx.org/read.php?2,263496,263496#msg-263496 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Fwd: Reg: Issue (Using 32KiB of shared memory for push module in /etc/nginx/nginx.conf)

2015-10-30 Thread Saravanan C
-- Forwarded message -- From: Saravanan C Date: Thu, Oct 22, 2015 at 2:09 AM Subject: Reg: Issue (Using 32KiB of shared memory for push module in /etc/nginx/nginx.conf) To: nginx@nginx.org Hi, Reg: Issue (Using 32KiB of shared memory for push module in /etc/nginx/nginx.conf

Re: Join us this month at nginx.conf 2015

2015-09-10 Thread Andrew Hutchings
rds Andrew On 10/09/15 00:56, Sarah Novotny wrote: > > Hi All, > > We hope that you’ll join us this month for the upcoming NGINX user > conference, nginx.conf 2015, September 22-24 at Fort Mason in San Francisco. > > There are a lot of amazing talks from people like y

Join us this month at nginx.conf 2015

2015-09-09 Thread Sarah Novotny
Hi All, We hope that you’ll join us this month for the upcoming NGINX user conference, nginx.conf 2015, September 22-24 at Fort Mason in San Francisco. There are a lot of amazing talks from people like you who are building cool shi+ with NGINX. Our guest speakers at nginx.conf 2015 will

nginx.conf schedule posted for 2015, September 22-24 @ Fort Mason, San Francisco

2015-08-18 Thread Sarah Novotny
Hello all! The NGINX user conference, nginx.conf 2015, is coming soon: September 22-24 @ Fort Mason, San Francisco. Register now to take advantage of our early pricing. — http://bit.ly/1NE1qHD nginx.conf 2015 includes technical talks, case studies, and hands-on training. We’ll also be

nginx.conf 2015 CFP is open

2015-05-06 Thread Sarah Novotny
nginx.conf 2015 Join us at Fort Mason in San Francisco from September 22-24, 2015. Submit a proposal to nginx.conf 2015! TL;DR • Speaker proposals due: 11:59 PM PDT, June 2, 2015 • Speakers notified: early July, 2015 • Program schedule announced: late July, 2015 As a

Re: testing nginx.conf fails

2015-03-18 Thread mac-989
Please disregard this post, the error has been identified. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,257421,257422#msg-257422 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

testing nginx.conf fails

2015-03-18 Thread mac-989
This is a new install of 1.6.2 on linux dedi (centOS). I have the following in my nginx.conf file: fastcgi_cache_path /dev/nginx-cache levels=1:2 keys_zone=WORDPRESS:10m max_size=1024m inactive=60m; When testing the configurations (nginx -t), I get the following error message: nginx: [emerg

Re: Matching multiple endpoints in location of nginx.conf

2014-11-23 Thread Igor Sysoev
On 23 Nov 2014, at 23:51, keeyong wrote: > I can't really test this easily so I am asking instead. I have this location > statement in my nginx.conf: > >location ~* ^/(api/abcd)/ { >... >} > > Now I want to match against "a

Matching multiple endpoints in location of nginx.conf

2014-11-23 Thread keeyong
I can't really test this easily so I am asking instead. I have this location statement in my nginx.conf: location ~* ^/(api/abcd)/ { ... } Now I want to match against "api/efgh". Then the regex should be something like this? location ~* ^/

Re: using variables in nginx.conf with 'set'

2014-11-02 Thread jazzhuang
Maybe this will help you - http://serverfault.com/questions/508794/custom-nginx-configuration-variables-not-being-expanded Posted at Nginx Forum: http://forum.nginx.org/read.php?2,143479,254534#msg-254534 ___ nginx mailing list nginx@nginx.org http://m

nginx.conf 2014 October 20-22 in San Francisco

2014-10-01 Thread Sarah Novotny
Hello all! nginx.conf 2014 is coming soon and best pricing and conference hotel rates expire October 3. We’re super excited about the speakers including Ilya Grigork of Google, Adrian Cockcroft of Battery Ventures, Yichun Zhang (agentzh) and John Graham-Cumming of Cloud Flare, Chris Byron

nginx.conf CFP closes tonight. (was Re: NGINX conference October 20-22 ...)

2014-08-01 Thread Sarah Novotny
wrote: > > > Hi All, > > We’ve just opened a call for proposals for the first NGINX conference, > nginx.conf. > Please share this CFP with those you know who have good NGINX stories to > share — > > Direct link to the CFP — https://nginx.busyconf.com/proposal

Re: Service restart testing nginx.conf

2014-02-21 Thread Styopa Semenukha
You must have used `service nginx reload` or `service nginx configtest`. On Friday, February 21, 2014 10:36:01 AM Paul N. Pace wrote: > It seems like way back in the olden days, when I restarted nginx ('sudo > service nginx restart'), if there was a configuration issue in nginx

Service restart testing nginx.conf

2014-02-21 Thread Paul N. Pace
It seems like way back in the olden days, when I restarted nginx ('sudo service nginx restart'), if there was a configuration issue in nginx.conf, I would get a warning telling me such and, IIRC, nginx would boot using the last known valid configuration. It doesn't seem to happ

Re: nginx.conf(5) man page

2013-09-24 Thread Maxim Dounin
> > Ability to generate man page from xml files doesn't hurt. Sure, as part of the nginx.org repository. But I believe the original question was about including the resulting nginx.conf(5) manpage into nginx distribution, which intentionally doesn't include documentation (exce

Re: nginx.conf(5) man page

2013-09-24 Thread Maxim Konovalov
On 9/24/13 6:44 PM, Maxim Dounin wrote: > Hello! > > On Tue, Sep 24, 2013 at 06:35:32PM +0400, Maxim Konovalov wrote: > > [...] > >>> * would there be interest to include a man page into the distribution >>> once it's ready? >> >> I think it's a good idea while we manage to keep a single sourc

Re: nginx.conf(5) man page

2013-09-24 Thread Maxim Dounin
Hello! On Tue, Sep 24, 2013 at 06:35:32PM +0400, Maxim Konovalov wrote: [...] > > * would there be interest to include a man page into the distribution > > once it's ready? > > I think it's a good idea while we manage to keep a single source for > both nginx.org docs and man page. I actually

Re: nginx.conf(5) man page

2013-09-24 Thread Maxim Konovalov
Hi Florian. On 9/24/13 6:24 PM, Florian Obser wrote: > Hi, > OpenBSD is working on replacing the (heavily patched) apache 1.3 in > base with nginx. During that work the question was raised if we can > have a nginx.conf(5) man page. Nice to hear. > As a proof of concept I pu

nginx.conf(5) man page

2013-09-24 Thread Florian Obser
Hi, OpenBSD is working on replacing the (heavily patched) apache 1.3 in base with nginx. During that work the question was raised if we can have a nginx.conf(5) man page. As a proof of concept I put a perl script together which scrapes the pages on http://nginx.org/en/docs/ (below "Mo

Use directive value inside nginx.conf

2013-07-25 Thread olfativo
Hi! I need to send to my application through "fastcgi_param" the value of "client_max_body_size" directive, which is defined in http block in nginx.conf Is there any way to do this without moving the declaration of that directive from http block? S

Re: *** glibc detected *** nginx: master process /data/nginx/sbin/nginx -c /data/nginx/conf/nginx.conf: free(): invalid pointer: 0x00000000005b9980 ***

2013-02-19 Thread Anton Yuzhaninov
On 02/19/13 16:26, disney2002 wrote: I got a Serious problem,here is the nginx config: nginx version: nginx/0.8.55 0.8.55 is very old, try to upgrade to latest stable - 1.2.7 -- Anton Yuzhaninov ___ nginx mailing list nginx@nginx.org http://mailma

*** glibc detected *** nginx: master process /data/nginx/sbin/nginx -c /data/nginx/conf/nginx.conf: free(): invalid pointer: 0x00000000005b9980 ***

2013-02-19 Thread disney2002
/local/openssl-1.0.1c --with-http_gzip_static_module --with-http_ssl_module and here is the error message: *** glibc detected *** nginx: master process /data/nginx/sbin/nginx -c /data/nginx/conf/nginx.conf: free(): invalid pointer: 0x005b9980 *** === Backtrace: = /lib64/libc.so

Re: A dynamic web-site written wholly in nginx.conf? Introducing mdoc.su!

2013-02-18 Thread mex
nice catch! i'd suggest you create the same stuff for ReactOS too (or maybe linux?) so you could have > f | n | o | r | d or > f | n | o | l | d regards, mex ... please forgive me that blasphemous references :) Posted at Nginx Forum: http://forum.nginx.org/read.php?2,236283,2362

A dynamic web-site written wholly in nginx.conf? Introducing mdoc.su!

2013-02-18 Thread Constantine A. Murenin
Dear nginx@, I'm not sure if this has already been done before and to what extent, but I'd like to demonstrate that a whole web-service "portal" can be written exclusively in nginx.conf, without any php, perl, python, java or cgi, or even any files external to nginx.conf.

A dynamic web-site written wholly in nginx.conf? Introducing mdoc.su!

2013-02-18 Thread Constantine A. Murenin
at a whole web-service "portal" can be written exclusively in nginx.conf, without any php, perl, python, java or cgi, or even any files external to nginx.conf. Introducing http://mdoc.su/ . The service provides deterministic URL tinyfication / URI shortening for BSD manual pages. H