多个域使用Nginx在一台服务器上命名

我努力在我的专用服务器上configuration两个不同的域名

我已经在虚拟主机DOMAIN_1.net.conf中configuration了一个DN:

server { listen 127.0.0.1:8080; server_name DOMAIN_1.net; access_log /home/DOMAIN_1/logs/access.log; error_log /home/DOMAIN_1/logs/error.log; root /home/DOMAIN_1; client_max_body_size 30M; location / { index index.php index.html index.htm; if (!-e $request_filename) { rewrite . /index.php last; } } location ~ \.php$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php5-fpm.sock; include /etc/nginx/fastcgi_params; } } 

我也有三个其他子域的configuration相同的方式。

我想在vhost DOMAIN_2.ovh.conf中的域名DOMAIN_2.ovh上安装一个owncloud服务器:

 upstream php-handler { server 127.0.0.1:9000; #server unix:/var/run/php5-fpm.sock; } server { listen 8080; server_name DOMAIN_2.ovh; return 301 https://$server_name$request_uri; # enforce https } server { listen 8080; #listen 443 ssl; server_name DOMAIN_2.ovh; #ssl_certificate /etc/nginx/certs/owncloud.crt; #ssl_certificate_key /etc/nginx/certs/owncloud.key; error_log /home/DOMAIN_2.ovh/logs/error.log; access_log /home/DOMAIN_2.ovh/logs.access.log; # Path to the root of your installation #root /var/www/; root /home/DOMAIN_2.ovh/www/; client_max_body_size 10G; # set max upload size fastcgi_buffers 64 4K; rewrite ^/caldav(.*)$ /remote.php/caldav$1 redirect; rewrite ^/carddav(.*)$ /remote.php/carddav$1 redirect; rewrite ^/webdav(.*)$ /remote.php/webdav$1 redirect; index index.php; error_page 403 /core/templates/403.php; error_page 404 /core/templates/404.php; location = /robots.txt { allow all; log_not_found off; access_log off; } location ~ ^/(?:\.htaccess|data|config|db_structure\.xml|README) { deny all; } location / { # The following 2 rules are only needed with webfinger rewrite ^/.well-known/host-meta /public.php?service=host-meta last; rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last; rewrite ^/.well-known/carddav /remote.php/carddav/ redirect; rewrite ^/.well-known/caldav /remote.php/caldav/ redirect; rewrite ^(/core/doc/[^\/]+/)$ $1/index.html; try_files $uri $uri/ index.php; } location ~ \.php(?:$|/) { fastcgi_split_path_info ^(.+\.php)(/.+)$; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; # fastcgi_param HTTPS on; fastcgi_pass php-handler; } # Optional: set long EXPIRES header on static assets location ~* \.(?:jpg|jpeg|gif|bmp|ico|png|css|js|swf)$ { expires 30d; # Optional: Don't log access to assets access_log off; } } 

但是当我重新启动Nginx,我有这个错误:

nginx:[警告]冲突的服务器名称“DOMAIN_2.ovh”在0.0.0.0:8080,忽略nginx。

我的nginx.conf文件:

 user www-data; worker_processes 4; pid /var/run/nginx.pid; events { worker_connections 768; # multi_accept on; } http { ## # Basic Settings ## sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; server_tokens off; # server_names_hash_bucket_size 64; # server_name_in_redirect off; include /etc/nginx/mime.types; default_type application/octet-stream; ## # Logging Settings ## access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log; ## # Gzip Settings ## gzip on; gzip_disable "msie6"; ## # Virtual Host Configs ## include /etc/nginx/conf.d/*.conf; include /etc/nginx/sites-enabled/*; } 

我发现很多这个错误的主题,但我不能解决它…如果有人能帮助我,这将是一个伟大的圣诞礼物;)哦哦哦