#I want Ngnix config to let my domain sevrve phpmyadmin besite the laravel project

4 messages · Page 1 of 1 (latest)

inland nacelle
#

I use vps with virtualmin and nginx
I want to use phpmyamin in my laravel project (that is working fine)

I tried many configuration but all failed

tawdry grove
#

Please explain what you've tried, what fails etc

inland nacelle
#

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