网站地图    收藏   

主页 > 系统 > linux系统 >

Linux下Nginx配置虚拟主机VirtualHost实例教程

来源:未知    时间:2015-04-28 09:27 作者:xxadmin 阅读:

[导读] Nginx在Linux系统上运行有轻量、高性能、并发处理能力强、资源消耗小等功能,特别是能表态网站,表现更出色,所以作为了Aapache的补充和替代,使用率越来越高,本文以Linux下配置VirtualHost虚...

Nginx在Linux系统上运行有轻量、高性能、并发处理能力强、资源消耗小等功能,特别是能表态网站,表现更出色,所以作为了Aapache的补充和替代,使用率越来越高,本文以Linux下配置VirtualHost虚拟主机的实例教程.

增加 Nginx 虚拟主机

这里假设大家的 Nginx 服务器已经安装好,不懂的请阅读各 linux 发行版的官方文档或者 LNMP 的安装说明,配置 Virtual host 步骤如下:

进入 /usr/local/nginx/conf/vhost 目录,创建虚拟主机配置文件 demo.neoease.com.conf ({域名}.conf).

打开配置文件,添加服务如下:

  1. server { 
  2.     listen          80;         
  3.     server_name     www.phpfensi.com;         
  4.     index           index.html index.htm index.php;         
  5.     root            /var/www/www.phpfensi.com;          
  6.     log_format      www.topjishu.net '$remote_addr - $remote_user [$time_local] $request' '$status $body_bytes_sent $http_referer' '$http_user_agent $http_x_forwarded_for';         
  7.     access_log      /var/log/www.phpfensi.com.log www.phpfensi.com; 

打开 Nginx 配置文件 /usr/local/nginx/conf/nginx.conf,在 http 范围引入虚拟主机配置文件如下:

include vhost/*.conf;

重启 Nginx 服务,执行以下语句.

service nginx restart

让 Nginx 虚拟主机支持 PHP

在前面第 2 步的虚拟主机服务对应的目录加入对 PHP 的支持,这里使用的是 FastCGI, 修改如下.

  1. server { 
  2. listen 80; 
  3. server_name www.phpfensi.com; 
  4. index index.html index.htm index.php; 
  5. root /var/www/www.phpfensi.com; 
  6. location ~ .*.(php|php5)?$ 
  7. fastcgi_pass unix:/tmp/php-cgi.sock; 
  8. fastcgi_index index.php; i 
  9. nclude fcgi.conf; 
  10. log_format www.phpfensi.com '$remote_addr - $remote_user [$time_local] $request' '$status $body_bytes_sent $http_referer ' '$http_user_agent $http_x_forwarded_for'; 
  11. access_log /var/log/www.phpfensi.com.log www.phpfensi.com; 

图片防盗链:

图片作为重要的耗流量大的静态资源,可能网站主并不希望其他网站直接引用,Nginx 可以通过 referer 来防止外站盗链图片,代码如下:

  1. server { 
  2. listen 80; 
  3. server_name www.phpfensi.com; 
  4. index index.html index.htm index.php; 
  5. root /var/www/www.phpfensi.com; # 这里为图片添加为期 1 年的过期时间,并且禁止 Google, 百度和本站之外的网站引用图片 
  6. location ~ .*.(ico|jpg|jpeg|png|gif)$ 
  7. expires 1y; 
  8. valid_referers none blocked demo.neoease.com *.google.com *.baidu.com; 
  9. if ($invalid_referer) { 
  10. return 404; 
  11. log_format www.topjishu.net '$remote_addr - $remote_user [$time_local] $request' '$status $body_bytes_sent $http_referer ' '$http_user_agent $http_x_forwarded_for'; 
  12. access_log /var/log/www.topjishu.net.log www.phpfensi.com; 

WordPress 伪静态配置

如果将 WordPress 的链接结构设定为 /%postname%/,/%postname%.html 等格式时,需要 rewrite URL,WordPress 提供 Apache 的 .htaccess 修改建议,但没告知 Nginx 该如何修改,我们可以将 WordPress 的虚拟主机配置修改如下:

  1. server { 
  2. listen 80; 
  3. server_name www.phpfensi.com; 
  4. index index.html index.htm index.php; 
  5. root /var/www/www.phpfensi.com; 
  6. location / { 
  7. if (-f $request_filename/index.html){ 
  8. rewrite (.) $1/index.html break; 
  9. if (-f $request_filename/index.php){ 
  10. rewrite (.) $1/index.php; 
  11. if (!-f $request_filename){ 
  12. rewrite (.) /index.php; 
  13. rewrite /wp-admin$ $scheme://$host$uri/ permanent; 
  14. location ~ ..(php|php5)?$ 
  15. fastcgi_pass unix:/tmp/php-cgi.sock; 
  16. fastcgi_index index.php; 
  17. include fcgi.conf; 
  18. log_format www.phpfensi.com '$remote_addr - $remote_user [$time_local] $request' '$status $body_bytes_sent $http_referer ' '$http_user_agent $http_x_forwarded_for'; access_log 
  19. /var/log/www.phpfensi.com.log demo.neoease.com; 

LNMP 套件在提供了 WordPress 为静态配置文件 /usr/local/nginx/conf/wordpress.conf,在虚拟主机配置的 server 范围引用如下即可.

include wordpress.conf;

如果你使用 LNMP 套件,进入 WordPress 后台发现会出现 404 页面,wp-admin 后面缺少了斜杆 /,请在 wordpress.conf 最后添加以下语句:

rewrite /wp-admin$ $scheme://$host$uri/ permanent;

相对 Apache,Nignx 有更加强大的并发能力,而因为他对进程管理耗用资源也比较少.而 Apache 比 Nginx 有更多更成熟的可用模块,bug 也比较少.

卖主机的 IDC 选择 Nignx,因为高并发允许他们创建更多虚拟主机空间更来钱;淘宝也因此改造 Nignx(Tengine)作为 CDN 服务器,可承受更大压力.

 

 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论