【Nginx用法】nginx配置内容

本文涉及的产品
全局流量管理 GTM,标准版 1个月
公共DNS(含HTTPDNS解析),每月1000万次HTTP解析
云解析 DNS,旗舰版 1个月
简介: 【Nginx用法】nginx配置内容

记录一下,项目当中使用的nginx配置(本地启动)

#user  nobody;

worker_processes  1;

#error_log  logs/error.log;

#error_log  logs/error.log  notice;

#error_log  logs/error.log  info;

#pid        logs/nginx.pid;

events {

   worker_connections  1024;

}

http {

   include       mime.types;

   default_type  application/octet-stream;

   #access_log  logs/access.log  main;

   sendfile        on;

   #tcp_nopush     on;

   #keepalive_timeout  0;

   keepalive_timeout  65;

   #gzip  on;

   server {

       listen       9000;

       

       server_name      www.unisiot.com;

       #server_name      ~^((?<subdomain>.*)\.)?unisiot\.com$;

       if ($subdomain = ""){

          set $subdomain "www";

       }

   

       index        index.html index.htm;

       #charset koi8-r;

       #access_log  logs/host.access.log  main;

       

       ssi on;

       ssi_silent_errors on;

       #ssi_types text/shtml;

       expires 30d;

       

       location / {

       

           root   F:/mainsite_root/mainsite/$dns;

           index   index.html index.htm;

         

           if ($host ~ (^\S*?(?=\.\S*))){

               set $dns $1;

           }

           #alias F:/mainsite_root/mainsite/$dns;

           #index index.html;

         

           #判断终端

           if ($http_user_agent ~* '(Android|webOS|iPhone|iPod|BlackBerry|iPad)') {

              set $mobile_request '1';

              #如果访问UA为移动终端类型则判断为mobile_request=1

           }

           if ($http_cookie ~ 'mobile_request=full') {

              set $mobile_request '';

           }

           if ($mobile_request = '') {

              #proxy_pass http://139.196.188.213;

              #判断mobile_request等于空则为PC终端

              root   F:/mainsite_root/mainsite/$dns/web;

           }

       

           #break;

           

           if ($uri ~* '(lobby|bedroom|livingroom|lavatory|kitchen|videoroom)') {

               root   F:/mainsite_root/mainsite/$dns;

           }

       }

       

       location /commonHtml {

           alias   F:/mainsite_root/common/;    

       }

       

       location /$subdomain {

           alias   F:/mainsite_root/mainsite/$subdomain;    

       }

       

       location ~ ^/(BJUI|ckeditor4.8|common|images|js|nice-validator|www|static)/ {

           root   F:/mainsite_root/static;

           autoindex on;

           access_log  off;

           expires     30d;          

       }

       

       location ~ ^/(upload)/ {

           root   F:/mainsite_root/;

           autoindex on;

           access_log  off;

           expires     30d;          

       }

       

       #error_page  404              /404.html;

       # redirect server error pages to the static page /50x.html

       #

       error_page   500 502 503 504  /50x.html;

       location = /50x.html {

           root   html;

       }

   }

}

 

 

 

完结!


相关文章
|
23天前
|
应用服务中间件 BI nginx
Nginx的location配置详解
【10月更文挑战第16天】Nginx的location配置详解
|
30天前
|
缓存 负载均衡 安全
Nginx常用基本配置总结:从入门到实战的全方位指南
Nginx常用基本配置总结:从入门到实战的全方位指南
247 0
|
1月前
|
应用服务中间件 Linux nginx
Jetson 环境安装(四):jetson nano配置ffmpeg和nginx(亲测)之编译错误汇总
这篇文章是关于在Jetson Nano上配置FFmpeg和Nginx时遇到的编译错误及其解决方案的汇总。
85 4
|
3天前
|
存储 负载均衡 中间件
Nginx反向代理配置详解,图文全面总结,建议收藏
Nginx 是大型架构必备中间件,也是大厂喜欢考察的内容,必知必会。本篇全面详解 Nginx 反向代理及配置,建议收藏。
Nginx反向代理配置详解,图文全面总结,建议收藏
|
15天前
|
应用服务中间件 API nginx
nginx配置反向代理404问题
【10月更文挑战第18天】本文介绍了使用Nginx进行反向代理的配置方法,解决了404错误、跨域问题和302重定向问题。关键配置包括代理路径、请求头设置、跨域头添加以及端口转发设置。通过调整`proxy_set_header`和添加必要的HTTP头,实现了稳定的服务代理和跨域访问。
nginx配置反向代理404问题
|
10天前
|
应用服务中间件 网络安全 PHP
八个免费开源 Nginx 管理系统,轻松管理 Nginx 站点配置
Nginx 是一个高效的 HTTP 服务器和反向代理,擅长处理静态资源、负载均衡和网关代理等任务。其配置主要通过 `nginx.conf` 文件完成,但复杂设置可能导致错误。本文介绍了几个开源的 Nginx 可视化配置系统,如 Nginx UI、VeryNginx、OpenPanel、Ajenti、Schenkd nginx-ui、EasyEngine、CapRover 和 NGINX Agent,帮助简化和安全地管理 Nginx 实例。
|
1月前
|
编解码 Ubuntu 应用服务中间件
Jetson 环境安装(三):jetson nano配置ffmpeg和nginx(亲测)
本文介绍了在NVIDIA Jetson Nano上配置FFmpeg和Nginx的步骤,包括安装、配置和自启动设置。
126 1
Jetson 环境安装(三):jetson nano配置ffmpeg和nginx(亲测)
|
20天前
|
缓存 负载均衡 应用服务中间件
Nginx配置
【10月更文挑战第22天】在实际配置 Nginx 时,需要根据具体的需求和环境进行调整和优化。同时,还需要注意配置文件的语法正确性和安全性。
35 7
|
29天前
|
前端开发 JavaScript 应用服务中间件
终极 Nginx 配置指南
本文介绍了Nginx的基本配置及其优化方法。首先,通过删除注释简化了Nginx的默认配置文件,使其更易于理解。接着,文章将Nginx配置文件分为全局块、events块和http块三部分进行详细解释。此外,还提供了如何快速上线网站、解决前端history模式404问题、配置反向代理、开启gzip压缩、设置维护页面、在同一IP上部署多个网站以及实现动静分离的具体配置示例。最后,附上了Nginx的基础命令,包括安装、启动、重启和关闭等操作。
|
1月前
|
负载均衡 应用服务中间件 nginx
Nginx的6大负载均衡策略及权重轮询手写配置
【10月更文挑战第9天】 Nginx是一款高性能的HTTP服务器和反向代理服务器,它在处理大量并发请求时表现出色。Nginx的负载均衡功能可以将请求分发到多个服务器,提高网站的吞吐量和可靠性。以下是Nginx支持的6大负载均衡策略:
133 7