Linux thinkphp5 多站点配置

来源:互联网 发布:远光软件怎么样 编辑:程序博客网 时间:2024/06/01 23:41

服务器版本: Centos 7.2
服务器环境: LNMP 1.4 稳定版
项目根目录: /home/wwwroot/

首先找到服务器下nginx配置文件: nginx.conf

[root@]# find / -name nginx.conf/usr/local/nginx/conf/nginx.conf[root@]# vi /usr/local/nginx/conf/nginx.conf

删除 nginx.conf 中 server的代码块,注意下方一定要有 include vhost/*.conf;
以下是未修改前配置

user  www www;worker_processes auto;error_log  /home/wwwlogs/nginx_error.log  crit;pid        /usr/local/nginx/logs/nginx.pid;#Specifies the value for maximum file descriptors that can be opened by this process.worker_rlimit_nofile 51200;events    {        use epoll;        worker_connections 51200;        multi_accept on;    }http    {        include       mime.types;        default_type  application/octet-stream;        server_names_hash_bucket_size 128;        client_header_buffer_size 32k;        large_client_header_buffers 4 32k;        client_max_body_size 50m;        sendfile   on;        tcp_nopush on;        keepalive_timeout 60;        tcp_nodelay on;        fastcgi_connect_timeout 300;        fastcgi_send_timeout 300;        fastcgi_read_timeout 300;        fastcgi_buffer_size 64k;        fastcgi_buffers 4 64k;        fastcgi_busy_buffers_size 128k;        fastcgi_temp_file_write_size 256k;        gzip on;        gzip_min_length  1k;        gzip_buffers     4 16k;        gzip_http_version 1.1;        gzip_comp_level 2;        gzip_types     text/plain application/javascript application/x-javascript text/javascript text/css application/xml application/xml+rss;        gzip_vary on;        gzip_proxied   expired no-cache no-store private auth;        gzip_disable   "MSIE [1-6]\.";        #limit_conn_zone $binary_remote_addr zone=perip:10m;        ##If enable limit_conn_zone,add "limit_conn perip 10;" to server section.        server_tokens off;        access_log off;server    {        listen 80 default_server;        #listen [::]:80 default_server ipv6only=on;        server_name www.lnmp.org;        index index.html index.htm index.php;        root  /home/wwwroot/default;        #error_page   404   /404.html;        include enable-php.conf;        location /nginx_status        {            stub_status on;            access_log   off;        }        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$        {            expires      30d;        }        location ~ .*\.(js|css)?$        {            expires      12h;        }        location ~ /\.        {            deny all;        }        access_log  /home/wwwlogs/access.log;    }include vhost/*.conf;}

修改后

user  www www;worker_processes auto;error_log  /home/wwwlogs/nginx_error.log  crit;pid        /usr/local/nginx/logs/nginx.pid;#Specifies the value for maximum file descriptors that can be opened by this process.worker_rlimit_nofile 51200;events    {        use epoll;        worker_connections 51200;        multi_accept on;    }http    {        include       mime.types;        default_type  application/octet-stream;        server_names_hash_bucket_size 128;        client_header_buffer_size 32k;        large_client_header_buffers 4 32k;        client_max_body_size 50m;        sendfile   on;        tcp_nopush on;        keepalive_timeout 60;        tcp_nodelay on;        fastcgi_connect_timeout 300;        fastcgi_send_timeout 300;        fastcgi_read_timeout 300;        fastcgi_buffer_size 64k;        fastcgi_buffers 4 64k;        fastcgi_busy_buffers_size 128k;        fastcgi_temp_file_write_size 256k;        gzip on;        gzip_min_length  1k;        gzip_buffers     4 16k;        gzip_http_version 1.1;        gzip_comp_level 2;        gzip_types     text/plain application/javascript application/x-javascript text/javascript text/css application/xml application/xml+rss;        gzip_vary on;        gzip_proxied   expired no-cache no-store private auth;        gzip_disable   "MSIE [1-6]\.";        #limit_conn_zone $binary_remote_addr zone=perip:10m;        ##If enable limit_conn_zone,add "limit_conn perip 10;" to server section.        server_tokens off;        access_log off;include vhost/*.conf;}

在 nginx.conf 的同级,建立一个 vhost 目录
例如: /usr/local/nginx/conf/nginx.conf 为 nginx.conf 的路径

[root@ conf]# cd /usr/local/nginx/conf/[root@ conf]# mkdir vhost

这个目录就是放置各个的站点的配置,然后通过 nginx.conf 中 以下这行代码引入
include vhost/*.conf;
假设我们别分需要给两个项目配置不同的站点

test1 www.test1.com
test2 www.test2.com

在 vhost 目录下新建文件 test1.conf 写入以下配置

server    {        listen 80;        #listen [::]:80 default_server ipv6only=on;        server_name www.test1.com;        index index.html index.htm index.php;        root  /home/wwwroot/test1/public;        #error_page   404   /404.html;        include enable-php.conf;        location /nginx_status        {            stub_status on;            access_log   off;        }        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$        {            expires      30d;        }        location ~ .*\.(js|css)?$        {            expires      12h;        }        location / {            if (!-e $request_filename){                rewrite ^/(.*)$ /index.php?s=/$1 last;            }        }        location ~ /\.        {            deny all;        }        access_log  /home/wwwlogs/access.log;    }

再新建一个文件 test1.conf 写入以下配置

server    {        listen 80;        #listen [::]:80 default_server ipv6only=on;        server_name www.test2.com;        index index.html index.htm index.php;        root  /home/wwwroot/test2/public;        #error_page   404   /404.html;        include enable-php.conf;        location /nginx_status        {            stub_status on;            access_log   off;        }        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$        {            expires      30d;        }        location ~ .*\.(js|css)?$        {            expires      12h;        }        location / {            if (!-e $request_filename){                rewrite ^/(.*)$ /index.php?s=/$1 last;            }        }        location ~ /\.        {            deny all;        }        access_log  /home/wwwlogs/access.log;    }

重启 nginx

[root@]# lnmp restart

分别访问 www.test1.com www.test2.com 即可

原创粉丝点击