Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
SQLBuddy with nginx
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  4 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
fsk141  
View profile  
 More options Jul 23 2012, 2:42 pm
From: fsk141 <fsk...@gmail.com>
Date: Mon, 23 Jul 2012 11:42:55 -0700 (PDT)
Local: Mon, Jul 23 2012 2:42 pm
Subject: SQLBuddy with nginx

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


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Emmanuel Higgins  
View profile   Translate to Translated (View Original)
 More options Jul 24 2012, 6:23 pm
From: Emmanuel Higgins <emmanuelhigg...@gmail.com>
Date: Tue, 24 Jul 2012 15:23:28 -0700 (PDT)
Local: Tues, Jul 24 2012 6:23 pm
Subject: Re: SQLBuddy with nginx

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.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
motojoester  
View profile  
 More options Sep 8 2012, 10:39 am
From: motojoester <jos...@spurrierfamily.net>
Date: Sat, 8 Sep 2012 07:39:39 -0700 (PDT)
Local: Sat, Sep 8 2012 10:39 am
Subject: Re: SQLBuddy with nginx

Yes, SQL Buddy supports Nginx. If you would like to test SQL Buddy on
Nginx, try FusionLeaf Stack. The instructions are here:
http://code.google.com/p/fusionleaf/wiki/stack_instructions

Emmanuel also makes a good point. Try creating a simple test page to see if
PHP is configured correctly with Nginx:

<?php
echo 'Hello Word';
?>

All you should see if Hello World if you try to visit the page in your web
browser. If you see all of the code on the webpage, it means either the
last block (location ~ \.php$) in your nginx .conf is not configured
correctly or PHP is not working properly.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
p4guru  
View profile  
 More options Dec 11 2012, 8:51 pm
From: p4guru <p4guru...@gmail.com>
Date: Tue, 11 Dec 2012 17:51:04 -0800 (PST)
Local: Tues, Dec 11 2012 8:51 pm
Subject: Re: SQLBuddy with nginx

looks like folks over at ars did an article with sqlbuddy nginx setup
at http://arstechnica.com/information-technology/2012/12/web-served-part...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »