Nginx Server
Nginx Server
server {
listen 80;
server_name your_domain.com;
root /var/www/html;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
}
sudo nginx -t
## Go for the below path and insert the content from info.php ##
cd /var/www/html/
listen 80 default_server;
listen [::]:80 default_server;