https error after removing nginx
-
- Posts: 2
- Joined: Thu Mar 19, 2015 12:56 pm
https error after removing nginx
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
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
Nginx problem will be solved with proxy_send_timeout/proxy_read_timeout:mahdiawadi wrote:how can i fix the time out problem with nginx
proxy_send_timeout 900;
proxy_read_timeout 900;
Nginx support ssl work, you can add your certifices in apache2 by your own hands, if you want.mahdiawadi wrote:get https working without nginx?
-
- Posts: 2
- Joined: Thu Mar 19, 2015 12:56 pm
Re: https error after removing nginx
thank you