Hi,
I am trying to configure NGINX to use Phalcon and phpMyAdmin.
Here is the tree of my server:
html/
my-app
phpmyadmin
Here is the server part of my config nginx:
server {
listen 80;
server_name my-app;
root 'html/my-app/public';
index index.php index.html index.htm;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?_url=$uri&$args;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
}
location ~ /\.ht {
deny all;
}
location /phpmyadmin {
root 'html/phpmyadmin';
}
}
I get an error 404 when I go to /phpmyadmin and I don't know why.
Could you help me?