tan 发表于 2019-6-8 23:43:25

两个域名的路径修改了没用,只指向nginx.conf的默认路径

nignx.conf文件:
server
    {
      listen 80 default_server reuseport;
      #listen [::]:80 default_server ipv6only=on;
      server_name _;
    #ssl on;
    #ssl_certificate ssl/2040299_tanym.xyz.pem;
    #ssl_certificate_key ssl/2040299_tanym.xyz.key; # SSL证书私钥
    #ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
    #ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
    #ssl_prefer_server_ciphers on;

      index index.html index.htm index.php;
      root/home/wwwroot/blog;
。。。。。。。。。。



vhost文件夹中的一个域名的conf文件
server
    {
      listen 80;
      #listen [::]:80;
      server_name www.one.tanym.xy ;
      index index.html index.htm index.php default.html default.htm default.php;
      root/home/wwwroot/one;
。。。。。。。。。。



vhost文件夹中的另一个域名的conf文件
server
    {
      listen 80;
      #listen [::]:80;
      server_name www.tanym.xyz ;
      index index.html index.htm index.php default.html default.htm default.php;
      root/home/wwwroot/blog;
。。。。。。。。




不管是那个域名都指向nignx.conf的默认路径,明明已经指定了各自的路径。。。。。。真心搞不懂??????


licess 发表于 2019-6-9 09:48:26

所有nginx的配置文件修改,都必须重启或reload nginx,否则不会生效,如果你的配置文件有错误也是不会生效的
页: [1]
查看完整版本: 两个域名的路径修改了没用,只指向nginx.conf的默认路径