zoukankan      html  css  js  c++  java
  • Nginx 配置 HTTP

    配置如下

    #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;
    
        log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                         '$status $body_bytes_sent "$http_referer" '
                          '"$http_user_agent" "$http_x_forwarded_for"';
    
        #access_log  logs/access.log  main;
    
        sendfile        on;
        #tcp_nopush     on;
    
        #keepalive_timeout  0;
        keepalive_timeout  65;
    
        #gzip  on;
     
        server { 
            # host
            server_name example.com www.example.com;
            
            #设置长连接
            keepalive_timeout 70;    
            #减少点击劫持
            add_header X-Frame-Options DENY;
            #禁止服务器自动解析资源类型
            add_header X-Content-Type-Options nosniff;
            #防XSS攻击
            add_header X-Xss-Protection 1; 
            # 默认index
            index index.html index.htm index.php default.html default.htm default.php;
            # 代码的根目录
            root  /home/wwwroot/example;
            # 访问日志
            access_log  /usr/local/nginx/logs/example.com.log  main; 
        } 
    }
  • 相关阅读:
    P5304旅行者(比bk201还要流氓的解法)
    考试T1护花
    考试T2修剪草坪
    考试T3麻将
    账号密码
    T7
    P2885 [USACO07NOV]电话线Telephone Wire
    P4965 薇尔莉特的打字机
    P1505 [国家集训队]旅游
    T2
  • 原文地址:https://www.cnblogs.com/vipsoft/p/11530884.html
Copyright © 2011-2022 走看看