linux中Nginx的常用配置(域名跳转 https cdn配置)
发布:smiling 来源: PHP粉丝网 添加日期:2014-10-13 10:03:43 浏览: 评论:0
学习nginx久了我们通常会有一些常用的配置了,下面我给大家整理了Nginx配置中像域名跳转 https域名跳转跳到http或 cdn配置一些例子,希望能帮助各位.
www跳转到主域名,代码如下:
- server {
- listen 80;
- server_name www.phpfensi.com;
- access_log off;
- error_log off;
- return 301 http://tool.lu$request_uri;
- }
http跳转到https,代码如下:
- server {
- listen 80;
- server_name tool.lu;
- return 301 https://tool.lu$request_uri;
- }
fastcgi,代码如下:
- location ~ .php$ {
- try_files $uri =404;
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; --phpfensi.com
- include fastcgi_params;
- }
cdn,代码如下:
- server {
- listen 80;
- server_name s1.tool.lu s2.tool.lu s3.tool.lu s4.tool.lu;
- root /data/html/tool.lu/static;
- index index.html;
- access_log off;
- error_log off;
- location / {
- concat on;
- concat_types text/css application/javascript;
- # 解决js语句不以分号结尾的第三方库
- concat_delimiter "nn";
- concat_max_files 20;
- expires 7d;
- }
- }
Tags: Nginx域名跳转 https cdn配置
相关文章
- ·Apache启用https mod_ssl.so, 使用godaddy的SSL证书(2014-10-01)
- ·linux中让 Docker 使用 HTTPS的教程(2015-04-27)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)