当前位置:首页 > linux教程 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2014-10-13 10:03:43 浏览: 评论:0 

学习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. }

Tags: Nginx域名跳转 https cdn配置

分享到: