how to install nginx with php ubuntu 20.04
sudo apt install php-fpm php-mysql
how to install nginx with php ubuntu 20.04
sudo apt install php-fpm php-mysql
how to install nginx with php ubuntu 20.04
sudo nano /etc/nginx/sites-available/your_domain
how to install nginx with php ubuntu 20.04
sudo mkdir /var/www/your_domain
how to install nginx with php ubuntu 20.04
server {
listen 80;
server_name your_domain www.your_domain;
root /var/www/your_domain;
index index.html index.htm index.php;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
how to install nginx with php ubuntu 20.04
sudo chown -R $USER:$USER /var/www/your_domain
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us