CentOS下nginx解析本地虚拟域名

来源:互联网 发布:守望先锋性能数据vrm 编辑:程序博客网 时间:2024/05/17 04:50

nginx配置文件中,server_name配置一个虚拟域名,要到/etc/hosts下增加一个本地域名127.0.0.1 www.abc.com

server        {                listen 80;                #listen [::]:80;                server_name www.abc.com;                index index.html index.htm index.php default.html default.htm default.php;                root  /home/wwwroor/www.abc.com/public;                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;                        }                location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$                        {                                expires      30d;                        }                location ~ .*\.(js|css)?$                        {                                expires      12h;                        }                access_log off;        }


0 0
原创粉丝点击