Gateway reverso do proxy reverso 502

1

Eu configurei um subdomínio para o proxy do meu painel plesk, mas ao salvar páginas estou recebendo 502 Bad Gateway erro em vez de uma mensagem de conclusão. Estou executando CentOS 6 .

Aqui está minha configuração de vhost.conf para http://plesk.domain.tld/ :

RewriteEngine On
RewriteCond %{SERVER_PORT} ^80$
RewriteRule $ https://plesk.domain.tld/ [R,L]

Aqui está minha configuração de vhost_ssl.conf para https://plesk.domain.tld/ :

SSLProxyEngine On

<Location />
    ProxyPass https://localhost:8443/
    ProxyPassReverse https://localhost:8443/
</Location>

Eu tenho mais do que suficiente (e chequei até mesmo) RAM, CPU e HDD. Não há picos. Além disso, as informações postadas são salvas, apenas erros ao tentar me mostrar "Essas informações foram salvas". bloco verde / vermelho.

Aqui está o erro relevante de /var/log/nginx/error.log (IP / Host Filtered):

2014/05/29 02:42:41 [error] 8046#0: *402 upstream prematurely closed connection while reading response header from upstream, client: 173.238.XX.XX, server: plesk.domain.tld, request: "POST /smb/web/edit HTTP/1.1", upstream: "https://198.100.XX.XX:7081/smb/web/edit", host: "plesk.domain.tld", referrer: "https://plesk.domain.tld/smb/web/edit"

    
por Brian Graham 29.05.2014 / 03:10

1 resposta

1

Para quem quer corrigir esse problema, aqui está a solução.

Referência : link

By default, Parallels Plesk Panel does not use Apache graceful restart for applying new settings. As result Apache will be restarted every time you change hosting settings through the Plesk GUI. This can lead to unwanted interruptions of sites operation.

Solução

INSERT INTO 'misc' VALUES ('restart_apache_gracefully', 'true') ON DUPLICATE KEY UPDATE 'val' = 'true';
    
por 30.05.2014 / 22:01