Estou portando um site PHP de um servidor Apache também como um servidor NGINX. Primeiro eu vou me livrar de apache
para evitar problemas:
# service httpd stop
# yum erase httpd*
Agora vou instalar o php-fpm
para poder estender as funções do php através do NGINX:
# yum install php-fpm
Vamos garantir que o php-fpm esteja sendo executado sob o usuário certo:
# ps aux | grep apache
apache 1658 0.0 0.5 222552 5316 ? S 20:41 0:00 php-fpm: pool www
apache 1659 0.0 1.0 227268 10536 ? S 20:41 0:00 php-fpm: pool www
apache 1660 0.0 1.0 227268 10420 ? S 20:41 0:00 php-fpm: pool www
apache 1661 0.0 1.0 227268 10420 ? S 20:41 0:00 php-fpm: pool www
apache 1662 0.0 0.5 222552 5316 ? S 20:41 0:00 php-fpm: pool www
Não ... então e se:
# vi /etc/php-fpm.d/www.conf
# service php-fpm restart
# ps aux | grep nginx
nginx 2379 0.0 0.3 222264 3504 ? S 21:47 0:00 php-fpm: pool www
nginx 2380 0.0 0.3 222264 3504 ? S 21:47 0:00 php-fpm: pool www
nginx 2381 0.0 0.3 222264 3504 ? S 21:47 0:00 php-fpm: pool www
nginx 2382 0.0 0.3 222264 3504 ? S 21:47 0:00 php-fpm: pool www
nginx 2383 0.0 0.3 222264 3508 ? S 21:47 0:00 php-fpm: pool www
Fantástico ... Vamos ver o que acontece quando invoco uma chamada mail()
do meu aplicativo:
postfix/pickup[2305]: 6B9B6223BD: uid=497 from=<nginx>
postfix/cleanup[2393]: 6B9B6223BD: message-id=<[email protected]>
postfix/qmgr[2306]: 6B9B6223BD: from=<[email protected]>, size=367, nrcpt=1 (queue active)
postfix/smtp[2396]: connect to gmail-smtp-in.l.google.com[173.194.75.26]:25: Connection timed out
postfix/smtp[2396]: connect to alt1.gmail-smtp-in.l.google.com[173.194.65.26]:25: Connection timed out
postfix/smtp[2396]: connect to alt2.gmail-smtp-in.l.google.com[173.194.70.27]:25: Connection timed out
postfix/smtp[2396]: connect to alt3.gmail-smtp-in.l.google.com[173.194.69.27]:25: Connection timed out
postfix/smtp[2396]: connect to alt4.gmail-smtp-in.l.google.com[173.194.71.26]:25: Connection timed out
postfix/smtp[2396]: 6B9B6223BD: to=<[email protected]>, relay=none, delay=151, delays=0.03/0.01/150/0, dsn=4.4.1, status=deferred (connect to alt4.gmail-smtp-in.l.google.com[173.194.71.26]:25: Connection timed out)
Então, minha caixa pode descobrir como acessar o Gmail?
# host -t mx gmail.com
gmail.com mail is handled by 20 alt2.gmail-smtp-in.l.google.com.
gmail.com mail is handled by 30 alt3.gmail-smtp-in.l.google.com.
gmail.com mail is handled by 40 alt4.gmail-smtp-in.l.google.com.
gmail.com mail is handled by 5 gmail-smtp-in.l.google.com.
gmail.com mail is handled by 10 alt1.gmail-smtp-in.l.google.com.
Com certeza pode .. hummm ..
Permita-me notar que esta é uma VM guest do Centos 6.3 rodando localmente.
O problema é que não consigo entregar e-mails usando a configuração atual.
Não tenho certeza do que fazer a seguir, qualquer orientação seria bem-vinda.