您好,欢迎来到锐游网。
搜索
您的当前位置:首页nginx-配置多域名

nginx-配置多域名

来源:锐游网
server {
    listen       80;
    server_name  localhost;

    #access_log  logs/host.access.log  main;

    root    "D:/dev/php";
    location / {
        index  index.html index.htm index.php l.php;
        autoindex  off;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }

    location ~ \.php(.*)$  {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        fastcgi_param  PATH_INFO  $fastcgi_path_info;
        fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
        include        fastcgi_params;
    }

}

ucapi.conf

server {
    listen       80;
    server_name  ucapi.com;

    #access_log  logs/host.access.log  main;

    root    "D:/dev/php/apiserverWorkSpace/ucApiserver";
    location / {
        index  index.html index.htm index.php l.php;
        autoindex  off;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }

    location /public/ {
        if (!-e $request_filename){
            rewrite  ^/public/(.*)$  /public/index.php/$1  last;
        }
    }

    location ~ \.php(.*)$  {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        fastcgi_param  PATH_INFO  $fastcgi_path_info;
        fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
        include        fastcgi_params;
    }

}

ucdb.conf

server {
    listen       80;
    server_name  ucdb.com;

    #access_log  logs/host.access.log  main;

    root    "D:/dev/php/dbserverWorkSpace/ucDbserver";
    location / {
        index  index.html index.htm index.php l.php;
        autoindex  off;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }

    location /public/ {
        if (!-e $request_filename){
            rewrite  ^/public/(.*)$  /public/index.php/$1  last;
        }
    }

    location ~ \.php(.*)$  {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        fastcgi_param  PATH_INFO  $fastcgi_path_info;
        fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
        include        fastcgi_params;
    }

}

5、重启nginx

因篇幅问题不能全部显示,请点此查看更多更全内容

Copyright © 2019- ryyc.cn 版权所有 湘ICP备2023022495号-3

违法及侵权请联系:TEL:199 1889 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务