O Nginx parece armazenar em cache meus arquivos PHP , porque ele serve a mesma página PHP, mesmo que eu tenha alterado o arquivo no servidor.
Estou usando:
- Ubuntu 16.04 Droplet da Digitalocean
- nginx / 1.10.0 (instalação normal do LEMP One-Click )
- PHP 7.0.13-0ubuntu0.16.04.1
Eu tentei máquinas diferentes, o problema persiste.
Eu testei no Apache2 e o arquivo php estava sendo atualizado como esperado. Portanto, concluo que o problema está no Nginx.
Processo de depuração: novo servidor & Instalação Fresh LEMP:
-
Edite o nginx.conf para alterar
sendfile on
para sendfile off
, de acordo com este site . Em seguida, recarregue a configuração do nginx com nginx -s reload
(consulte o arquivo nginx.conf
abaixo)
-
Crie um novo bloco de servidor para
test.mypersonalsite.com
(consulte o arquivo de bloqueio do servidor abaixo)
-
Bloqueio do servidor de links para
sites-enabled
directory
sudo ln -s /etc/nginx/sites-available/test.mypersonalsite.com /etc/nginx/sites-enabled/
-
Verifique e reinicie o nginx com nginx -t
e, em seguida, sudo systemctl restart nginx
-
Crie index.html e index.php implante no servidor (Funciona perfeitamente)
Até aqui tudo funciona bem, depois aqui bugs
- Atualize index.html e index.php da v1.0.7 para a v1.0.8
Após a alteração, o index.php
não é recarregado. Embora o index.html
faça.
Isso significa que, se eu solicitar o site pelo meu navegador, recebo o arquivo php antigo, em vez do novo que está no servidor.
Se eu ssh no servidor e sudo nano
do arquivo php, ele ainda não será atualizado. Parece que php
está em cache no servidor.
Eu tentei acessar o site de diferentes máquinas. Mesmo problema.
Pergunta
Eu pesquisei muito na web. A maioria das soluções gira em torno da configuração do nginx para sendfile off
, o que fiz e o problema ainda persiste.
Como faço o Nginx recarregar meus arquivos php atualizados?
Os arquivos mais importantes:
nginx.conf
user www-data;
worker_processes auto;
pid /run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile off;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# SSL Settings
##
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
#mail {
# # See sample authentication script at:
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
#
# # auth_http localhost/auth.php;
# # pop3_capabilities "TOP" "USER";
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
# server {
# listen localhost:110;
# protocol pop3;
# proxy on;
# }
#
# server {
# listen localhost:143;
# protocol imap;
# proxy on;
# }
#}
Bloco de servidores: test.mypersonalsite.com
# Default server configuration
#
server {
listen 80;
listen [::]:80;
root /var/www/html;
index index.php index.html index.htm index.nginx-debian.html;
server_name test.mypersonalwebsite.com;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
include snippets/fastcgi-php.conf;
# With php7.0-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php7.0-fpm:
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
}
Initial index.html v1.0.7
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Nginx Test v1.0.7</title>
</head>
<body>
<h1>Nginx Test v1.0.7</h1>
<a href="/public" title="">Go to PHP file</a>
</body>
</html>
Inicial index.php v1.0.7
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>v1.0.7 - <?php echo "That's an nginx Test." ?></title>
<link rel="stylesheet" href="">
</head>
<body>
<h1><?= "v1.0.7 - Just Testing PHP on Nginx." ?></h1>
<a href="../" title="">Return to Index</a>
<h4>Random PHP Generated Number:
<?=
rand(1, 100);
?>
</h4>
</body>
</html>
Index.html atualizado para v1.0.8 (recarregando)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Nginx Test v1.0.8</title>
</head>
<body>
<h1>Nginx Test v1.0.8</h1>
<a href="/public" title="">Go to PHP file</a>
</body>
</html>
Index.php atualizado para v1.0.8 (NÃO recarregando)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>v1.0.8 - <?php echo "That's an nginx Test." ?></title>
<link rel="stylesheet" href="">
</head>
<body>
<h1><?= "v1.0.8 - Just Testing PHP on Nginx." ?></h1>
<a href="../" title="">Return to Index</a>
<h4>Random PHP Generated Number:
<?=
rand(1, 100);
?>
</h4>
</body>
</html>