How to install laravel php7.2-fpm nginx mariadb
sudo apt install php7.2-fpm php7.2-mbstring php7.2-xmlrpc php7.2-soap php7.2-gd php7.2-xml php7.2-cli php7.2-zip
server {
listen 80;
listen [::]:80;
root /var/www/html/laravel/nama_project/public;
index index.php index.html index.htm;
server_name 9.9.9.9.9;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}