Hi there,
I am using sqlbuddy on nginx. Here's my config:
server {
listen 80;
server_name sql.mywebsite.com;
root /var/www/sql;
access_log /var/log/nginx/sql.access.log;
location / {
root /var/www/sql;
index index.php;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME
/var/www/sql$fastcgi_script_name;
include fastcgi_params;
}
}
Turning on php errors may show up something if you're just getting a blank
page.
On Tuesday, July 24, 2012 4:42:55 AM UTC+10, fsk141 wrote:
> Hello,
> I was wondering if sqlbuddy supports nginx & if there was any special
> configuration required. I'm currently trying to run it & am only getting a
> blank page ;(