#I want Ngnix config to let my domain sevrve phpmyadmin besite the laravel project
4 messages · Page 1 of 1 (latest)
Please explain what you've tried, what fails etc
this is my config
I also tried this
location /phpmyadmin {
alias /path/to/phpmyadmin; # Adjust the path to your phpMyAdmin directory
location ~ \.php$ {
fastcgi_pass unix:/var/php-fpm/169782114357090.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}