Re: nginx input

2016-09-07 Thread oscaretu .
Hello Do you know that NGINX needs a configuration file ? Kind regards, Oscar On Thu, Sep 8, 2016 at 7:11 AM, Muhui Jiang wrote: > Hi > > I am using program analysis to l

Re: Problem with SSL

2016-09-07 Thread Yuriy Medvedev
For all domain use ip+port. 8 сент. 2016 г. 8:19 пользователь "Kurogane" написал: > I never thought about it very ingenious indeed. > > If there is another way to accomplish it let me know. > > Posted at Nginx Forum: https://forum.nginx.org/read. > php?2,269401,269420#msg-269420 > >

Re: Problem with SSL

2016-09-07 Thread Kurogane
I never thought about it very ingenious indeed. If there is another way to accomplish it let me know. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,269401,269420#msg-269420 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/ma

nginx input

2016-09-07 Thread Muhui Jiang
Hi I am using program analysis to locate the bottleneck of nginx. I know the file nginx under the directory of nginx/sbin is the binary file. My question is that what is the input of the binary. I mean the format. Since a general URL doesn't seem to be a right input. Many Thanks Regards Muhui ___

Re: Problem with SSL

2016-09-07 Thread ron ramos
Just add another server block on domain1 that listens to 443 ..and redirect it to http if you ..or just give an error On 8 Sep 2016 11:59 a.m., "Kurogane" wrote: > Domain 1 > > server { > listen 80; > server_name domain1.com; > return 301 $scheme://www.$host$request_uri;

Re: Problem with SSL

2016-09-07 Thread Kurogane
Domain 1 server { listen 80; server_name domain1.com; return 301 $scheme://www.$host$request_uri; } server { listen 80; server_name www.domain1.com; root /home/domain1/public_html; ... } Domain 2 (SSL) server { listen 80;

Re: emergency msg after changing cache path

2016-09-07 Thread shiz
Interesting! Thank you so much! Posted at Nginx Forum: https://forum.nginx.org/read.php?2,269405,269415#msg-269415 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Problem with SSL

2016-09-07 Thread Yuriy Medvedev
Can you show your configuration? 7 сент. 2016 г. 19:33 пользователь "Kurogane" написал: > Nginx is not suppose work in block/vhost? that is not the issue here. > > Posted at Nginx Forum: https://forum.nginx.org/read. > php?2,269401,269413#msg-269413 > > __

Re: Problem with SSL

2016-09-07 Thread Kurogane
Nginx is not suppose work in block/vhost? that is not the issue here. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,269401,269413#msg-269413 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: emergency msg after changing cache path

2016-09-07 Thread Maxim Dounin
Hello! On Wed, Sep 07, 2016 at 10:30:18AM -0400, shiz wrote: > Got this message after changing the cache path? Could not find a solution > after googling it. Any help? > > [emerg] 15154#15154: cache "my_zone" uses the "/dev/shm/nginx" cache path > while previously it used the "/tmp/nginx" cach

emergency msg after changing cache path

2016-09-07 Thread shiz
Got this message after changing the cache path? Could not find a solution after googling it. Any help? [emerg] 15154#15154: cache "my_zone" uses the "/dev/shm/nginx" cache path while previously it used the "/tmp/nginx" cache path nginx -V nginx version: nginx/1.11.3 built with OpenSSL 1.0.2h 3

Re: Problem with SSL

2016-09-07 Thread Yuriy Medvedev
Hi, you must use vhost configuration for domains. 2016-09-07 12:27 GMT+03:00 Kurogane : > Hi, > > I've a problem with non ssl. > > I got this setup. > > domain1.com > domain2.com SSL > > The certificate i not have issue all is fine here. The problem is when > someone go to this https://domain1.co

Problem with SSL

2016-09-07 Thread Kurogane
Hi, I've a problem with non ssl. I got this setup. domain1.com domain2.com SSL The certificate i not have issue all is fine here. The problem is when someone go to this https://domain1.com is show domain2.com content. How i can solve this issue? i have multi domain using same IP and all domain