Hi All
I know there has been a few threads on this topic but i still cant even get the install to start.
On the VPS
Ubuntu 12.04.3
NGINX
PHP and PHPMYADMIN setup as well.
Questions
1. Where do you upload and extract the oxwall-1.6.0 should this be the
/usr/share/nginx/www folder?
2.I have created a new default server block file on
/etc/nginx/sites-available/default and did a symbolic link to /etc/nginx/sites-enabled/default
server {
root /usr/share/nginx/www;
listen 95.85.18.75:80;
server_name www.mysite.com;
access_log /var/log/nginx/mysite.com.access.log;
if ($uri !~ "^/index.php"){set $rule_0 1$rule_0; }
if ($uri !~ "/ow_updates/index.php"){set $rule_0 2$rule_0; }
if ($uri !~ "/ow_updates/"){set $rule_0 3$rule_0; }
if ($uri !~ "/ow_cron/run.php"){set $rule_0 4$rule_0; }
if ($uri !~ "^/sitemap.xml"){set $rule_0 5$rule_0; }
if ($uri !~ "^/sitemap-[0-255].xml"){set $rule_0 6$rule_0; }
if ($uri ~ "(/|.php|.html|.htm|.xml|.feed|robots.txt|.raw|/[^.]*)$"){set $rule_0 7$rule_0;}if ($rule_0 = "7654321"){rewrite /(.*) /index.php; }
location ~ \.php {
fastcgi_split_path_info ^(.+\.php)(.*)$;
#fastcgi_pass backend;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/mysite$fastcgi_script_name;
include fastcgi_params;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_intercept_errors on;
fastcgi_ignore_client_abort off;
fastcgi_connect_timeout 60;
fastcgi_send_timeout 180;
fastcgi_read_timeout 180;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 256k;
fastcgi_busy_buffers_size 256k;
fastcgi_temp_file_write_size 256k;
}
}
When i try www.mysite.com/install or www.mysite.com/oxwall/install I just get website no found. If i try with IP address/install i get the 'welcome to nginx' message.
Does anyone have an idea?!
Thanks in advance.