Forum: NGINX i have a issue with virtual host

Posted by Olivier Oliv (zyriuse)
on 2012-11-08 14:38
(Received via mailing list)
hy everybody
I try to create a virtual host (server block) on nginx, and i have two
issue.

When i m going to* http://localhost* ,i see my website
But when i try to go to the virtual host (server block) *
http://localhost/websvn*
I get an error because he try to find a webpage  with the name *websvn* 
on
my first website.
I don't understand why ??

*/conf/nginx.conf*

http {
>     default_type  application/octet-stream;
>     proxy_cache_path /mnt/donner/nginx/cache levels=1:2 keys_zone=one:10m;
>         listen       80;
>         #server_name localhost;
>         passenger_enabled on;
>         passenger_use_global_queue on;
>
>         error_log   /home/logs/nginx/error.log;
>         access_log  /home/logs/nginx/access-global.log;
>
      }

 }
>

*/vhost-enable/srv-websvn.conf*


server {

            listen   80;
            server_name  srv-websvn;
           # rewrite ^/(.*) http://localhost/$1 permanent;

            error_log  /home/logs/websvn/error.log;
            access_log /home/logs/websvn/access.log;
           }

server {

            listen   80;
            server_name  srv-websvn;

            error_log  /home/logs/websvn/error.log;
            access_log /home/logs/websvn/access.log;
 location / {

                  root   /home/sites_web/websvn/;
                  index  index.html;
                  #try_files $uri $uri/ /index.html;

             }
           }
Posted by Edho Arief (Guest)
on 2012-11-08 16:59
(Received via mailing list)
On Thu, Nov 8, 2012 at 8:37 PM, Olivier Morel <oliviermo75@gmail.com> 
wrote:
>
> hy everybody
> I try to create a virtual host (server block) on nginx, and i have two issue.
>
> When i m going to http://localhost ,i see my website
> But when i try to go to the virtual host (server block) http://localhost/websvn
> I get an error because he try to find a webpage  with the name websvn on my 
first website.
> I don't understand why ??
>

I think you're confused between virtualhost and subdirectory.
Please log in before posting. Registration is free and takes only a minute.
Existing account (Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
No account? Register here.