nginx 如何綁定域名

nginx 綁定域名方法很簡單,只要在 nginx 中 vhost 中加入 vhost 而後把 server_name 寫上你的域名就實現域名綁定了。
一、首先打開nginx域名配置文件存放目錄:/usr/local/nginx/conf/vhost ,如要綁定域名 lx.vxiaoxiao.cn 則在此目錄建一個文件:lx.vxiaoxiao.cn.conf 而後在此文件中寫規則,如:php

server
    {
        listen 80;
        #listen [::]:80;
        server_name lx.vxiaoxiao.cn;
        index index.html index.php;
        root  /www/lx.vxiaoxiao.cn;css

        include none.conf;
        #error_page   404   /404.html;
        location ~ [^/]\.php(/|$)
        {
            # comment try_files $uri =404; to enable pathinfo
            try_files $uri =404;
            fastcgi_pass  unix:/tmp/php-cgi.sock;
            fastcgi_index index.php;
            include fastcgi.conf;
            #include pathinfo.conf;
        }html

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }nginx

        location ~ .*\.(js|css)?$
        {
            expires      12h;
        }服務器

        access_log  /home/wwwlogs/lx.vxiaoxiao.cn.log  access;
    }

二、而後重啓nginx服務器,域名就綁定成功了,nginx服務器重啓命令:/etc/rc.d/rc1.d/nginx restart。unix

從新啓動過 cd /usr/local/nginx/sbin
./nginx -s reload
相關文章
相關標籤/搜索