网站地图    收藏   

主页 > 系统 > linux系统 >

linux中Nginx的常用配置(域名跳转 https cdn配置) -

来源:自学PHP网    时间:2014-11-28 23:06 作者: 阅读:

[导读] 学习nginx久了我们通常会有一些常用的配置了,下面我给大家整理了Nginx配置中像域名跳转 https域名跳转跳到http或 cdn配置一些例子,希望能帮助各位.www跳转到主域名,代码如下:server{listen8...

linux中Nginx的常用配置(域名跳转 https cdn配置)

学习nginx久了我们通常会有一些常用的配置了,下面我给大家整理了Nginx配置中像域名跳转 https域名跳转跳到http或 cdn配置一些例子,希望能帮助各位.

www跳转到主域名,代码如下:

  1. server { 
  2.     listen 80; 
  3.     server_name www.phpfensi.com; 
  4.     access_log off
  5.     error_log off
  6.     return 301 http://tool.lu$request_uri; 

http跳转到https,代码如下:

  1. server { 
  2.     listen      80; 
  3.     server_name tool.lu; 
  4.     return 301 https://tool.lu$request_uri; 

fastcgi,代码如下:

  1. location ~ .php$ { 
  2.     try_files $uri =404; 
  3.     fastcgi_pass 127.0.0.1:9000; 
  4.     fastcgi_index index.php; 
  5.     fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;  --phpfensi.com 
  6.     include fastcgi_params; 

cdn,代码如下:

  1. server { 
  2.     listen 80; 
  3.     server_name s1.tool.lu s2.tool.lu s3.tool.lu s4.tool.lu; 
  4.     root /data/html/tool.lu/static
  5.     index index.html; 
  6.     access_log off
  7.     error_log off
  8.     location / { 
  9.         concat on
  10.         concat_types text/css application/javascript; 
  11.         # 解决js语句不以分号结尾的第三方库 
  12.         concat_delimiter "nn"
  13.         concat_max_files 20; 
  14.         expires 7d; 
  15.     } 
  16. }

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

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

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

添加评论