Answers for "how to install nginx with php ubuntu 20.04"

PHP
0

how to install nginx with php ubuntu 20.04

sudo apt install php-fpm php-mysql
Posted by: Guest on July-24-2021
0

how to install nginx with php ubuntu 20.04

sudo nano /etc/nginx/sites-available/your_domain
Posted by: Guest on July-24-2021
0

how to install nginx with php ubuntu 20.04

sudo mkdir /var/www/your_domain
Posted by: Guest on July-24-2021
0

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;
    }

}
Posted by: Guest on July-24-2021
0

how to install nginx with php ubuntu 20.04

sudo chown -R $USER:$USER /var/www/your_domain
Posted by: Guest on July-24-2021

Code answers related to "how to install nginx with php ubuntu 20.04"

Browse Popular Code Answers by Language