Nginx HTTP Configuration

Configuration is as follows

#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-DENY Options;
         # prohibit server automatically resolves resource type 
        add_header-the X-Content-Type- Options nosniff;
         # Anti-XSS attack 
        add_header the X-Xss-Protection-1 ; 
         # default index 
        index index.html index.htm index.php default .html default . HTM default .php;
         # root code 
        the root / Home / wwwroot / Example;
         # access log 
        access_log / usr / local / Nginx / logs / example.com.log main; 
    } 
}

 

Guess you like

Origin www.cnblogs.com/vipsoft/p/11530884.html