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

互联网十八般武艺 互联网十八般武艺

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

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

  1. server{
  2. listen80;
  3. server_namewww.phpfensi.com;
  4. access_logoff;
  5. error_logoff;
  6. return301http://tool.lu$request_uri;
  7. }

http跳转到https,代码如下:

  1. server{
  2. listen80;
  3. server_nametool.lu;
  4. return301https://tool.lu$request_uri;
  5. }

fastcgi,代码如下:

  1. location~.php${
  2. try_files$uri=404;
  3. fastcgi_pass127.0.0.1:9000;
  4. fastcgi_indexindex.php;
  5. fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;--phpfensi.com
  6. includefastcgi_params;
  7. }

cdn,代码如下:

  1. server{
  2. listen80;
  3. server_names1.tool.lus2.tool.lus3.tool.lus4.tool.lu;
  4. root/data/html/tool.lu/static;
  5. indexindex.html;
  6. access_logoff;
  7. error_logoff;
  8. location/{
  9. concaton;
  10. concat_typestext/cssapplication/javascript;
  11. #解决js语句不以分号结尾的第三方库
  12. concat_delimiter"nn";
  13. concat_max_files20;
  14. expires7d;
  15. }
  16. }

相关广告
  • linux中Nginx的常用配置(域名跳转 https cdn配置) linux中Nginx的常用配置(域名跳转 https cdn配置) linux中Nginx的常用配置(域名跳转 https cdn配置)
相关阅读

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

2019/10/10 17:47:02 | 谷歌SEO算法 | 微信公众号