Rockmongo
If I place a test.php file in
I have my RockMongo config.php setup with the defaults.
I have /srv/www/
Here is the steps I took to get my VM up.
I spun up at Linode 1536 running the Ubuntu 10.04 LTS 64bit Profile.
I then followed the getting started guide, and the Security guide.
Afterwards I followed this guide
I choose to install more php libraries than the default instructions:
apt-get install nginx php5-cli php5-cgi php5-dev php5-curl php5-gd php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-ps php5-pspell php5-recode php5-snmp php5-xmlrpc php5-xsl php5-common php5-mysql spawn-fcgi psmisc curl imagemagick
Then I followed the guide on setting up MongoDB here:
For testing purposes I have noauth = true
After installing the MongoDB PHP driver. I verified it works by a phpinfo() call in a test.php file.
I then altered my iptables to allow mongodb ports by adding these:
# Allow MongoDB traffic
-A INPUT -p tcp --dport 27017 -j ACCEPT
-A INPUT -p tcp --dport 28017 -j ACCEPT
Any help would be appreciated. Thanks!
2 Replies
directory index of "/srv/www/
It works if I access it
Must be someway to configure my ngix file /etc/nginx/sites-available/
For now it works with the temp fix of adding index.php
location / {
index index.php index.html index.htm;
}