Page 1 of 1

https error after removing nginx

Posted: Thu Mar 19, 2015 1:09 pm
by mahdiawadi
Hi
i'm using vestacp for a few months now .. but i have two problem i'll be thankful if anyone can help me about them

i have some php scripts that they took more than couple of minutes to be executed.
but after a minute i get 500 internal server

i tried max_execution_time in php.ini and also tried php_admin_value max_execution_time in httpd.conf
but i still got the same error.
then i removed the nginx (as it said in vestacp documents) the problem got solved

but now the site won't work on https
i get SSL connection error

can you help me about how can i fix the time out problem with nginx or get https working without nginx?

thank you all in advance

Re: https error after removing nginx

Posted: Thu Mar 19, 2015 2:55 pm
by skurudo
mahdiawadi wrote:how can i fix the time out problem with nginx
Nginx problem will be solved with proxy_send_timeout/proxy_read_timeout:

proxy_send_timeout 900;
proxy_read_timeout 900;

mahdiawadi wrote:get https working without nginx?
Nginx support ssl work, you can add your certifices in apache2 by your own hands, if you want.

Re: https error after removing nginx

Posted: Tue Mar 24, 2015 1:50 pm
by mahdiawadi
thank you