
Good_speed
(usa Debian)
Enviado em 25/05/2020 - 16:20h
Boa tarde,
Mais uma vez venho neste fórum pedir ajuda, estou com a seguinte situação;
cat << EOF > /etc/nginx/sites-available/default # Preciso jogar estas linhas abaixo do parâmetro "include php.conf", como posso fazer isso?
include snippets/self-signed.conf;
include snippets/ssl-params.conf;
EOF
/etc/nginx/sites-available/default
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html;
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# Include
include php.conf
}
Agradeço quem puder ajudar