0
我已經安裝nginx和php7到亞馬遜EC2。 它通過本地IP檢查它的工作原理。但它不通過彈性IP。 有人可以幫我嗎?如何在amazon ec2上運行php7 nginx? (彈性IP?)
server {
listen 80 default_server;
root /var/www/html;
index index.php index.html;
server_name 52.43.19.61;
location/{
try_files $uri $uri/ /index.php?q=$uri&$args;
}
location ~ \.php$ {
try_files $uri = 404;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
謝謝你的所有問題。我不是專業人士來檢查這一切。我使用所有標準設置ec2。剛剛安裝了nginx和php7 –