用户名:
密 码: 记住
您当前的位置:首页 > 站长百科 > 服务器技术

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

时间:2015-01-23  来源:西部数据  作者:西部数据

学习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. }
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门