Welcome! Log In Create A New Profile

Advanced

Multiple virtual host on sampe IP ?

Posted by develturk 
Multiple virtual host on sampe IP ?
December 12, 2010 02:38PM
I have two domains..
obuluyo.com and opubo.com i want to host them on same ip adress

this is my virtual.conf file


server {
listen 80 default;
server_name 127.0.0.1;
root /home/sites/default/public;
index index.html index.htm;
}

server {
listen 80;
server_name obuluyo.com www.obuluyo.com;
root /home/sites/obuluyo.com/public;
access_log /home/sites/obuluyo.com/log/access.log;
error_log /home/sites/obuluyo.com/log/error.log;
index index.html index.htm index.php;
}
server {
listen 80;
server_name obuluyo.com www.obuluyo.com;
root /home/sites/obuluyo.com/public;
access_log /home/sites/obuluyo.com/log/access.log;
error_log /home/sites/obuluyo.com/log/error.log;
index index.html index.htm index.php;
}

opubo.com works but obuluyo.com doesn't work , what is wrong?
Re: Multiple virtual host on sampe IP ?
December 15, 2010 12:23PM
this my current conf file

server {
listen 80 default;
server_name 127.0.0.1;
root /home/sites/default/public;
index index.html index.htm;
}

server {
listen 80;
server_name obuluyo.com www.obuluyo.com;
root /home/sites/obuluyo.com/public;
access_log /home/sites/obuluyo.com/log/access.log;
error_log /home/sites/obuluyo.com/log/error.log;
index index.html index.htm index.php;
}
server {
listen 80;
server_name opubo.com www.opubo.com;
root /home/sites/opubo.com/public;
access_log /home/sites/opubo.com/log/access.log;
error_log /home/sites/opubo.com/log/error.log;
index index.html index.htm index.php;

location ~ \.php$ {

fastcgi_pass 127.0.0.1:9000; # port where FastCGI processes were spawned
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/sites/opubo.com/public/$fastcgi_script_name; # same path as above

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_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT $document_root;
fastcgi_param SERVER_PROTOCOL $server_protocol;

fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;

fastcgi_param REMOTE_ADDR $remote_addr;
fastcgi_param REMOTE_PORT $remote_port;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;

# required if PHP was built with .enable-force-cgi-redirect
fastcgi_param REDIRECT_STATUS 200;

}

}

help me please ..
Re: Multiple virtual host on sampe IP ?
December 21, 2010 08:27AM
It works fine, there was a problem in bind dns hosts configuration.
so last configuration works.



Edited 1 time(s). Last edit at 12/21/2010 08:28AM by develturk.
Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 263
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready