• ngnix相关


    命令相关:

    nginx -t  # 验证配置文件;无法验证其它文件的情况
    nginx -s reload # 重新加载;可以重启其它文件启动的情况
    nginx -s stop # 快速停止
    nginx -s quit  # 正常停止
    nginx -V # 查看版本
    nginx -c conf/web01.conf # 使用另一个配置文件
    

    正常配置文件目录  /etc/nginx/nginx.conf

    注意配置文件中引用的其他配置文件 避免修改后又被后面引用的文件覆盖如下ngix.confin http中 clude了

    两个其他配置文件

    user root;
    worker_processes auto;
    pid /run/nginx.pid;
    include /etc/nginx/modules-enabled/*.conf;
    
    events {
    	worker_connections 768;
    	# multi_accept on;
    }
    
    http {
    
    	##
    	# Basic Settings
    	##
    
    	sendfile on;
    	tcp_nopush on;
    	tcp_nodelay on;
    	keepalive_timeout 65;
    	types_hash_max_size 2048;
    	# server_tokens off;
    
    	# server_names_hash_bucket_size 64;
    	# server_name_in_redirect off;
    
    	include /etc/nginx/mime.types;
    	default_type application/octet-stream;
    
    	##
    	# SSL Settings
    	##
    
    	ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    	ssl_prefer_server_ciphers on;
    
    	##
    	# Logging Settings
    	##
    
    	access_log /var/log/nginx/access.log;
    	error_log /var/log/nginx/error.log;
    
    	##
    	# Gzip Settings
    	##
    
    	gzip on;
    
    	# gzip_vary on;
    	# gzip_proxied any;
    	# gzip_comp_level 6;
    	# gzip_buffers 16 8k;
    	# gzip_http_version 1.1;
    	# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
    
    	##
    	# Virtual Host Configs
    	##
    
    	include /etc/nginx/conf.d/*.conf;
    	include /etc/nginx/sites-enabled/*;
    }
    
    
    #mail {
    #	# See sample authentication script at:
    #	# http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
    # 
    #	# auth_http localhost/auth.php;
    #	# pop3_capabilities "TOP" "USER";
    #	# imap_capabilities "IMAP4rev1" "UIDPLUS";
    # 
    #	server {
    #		listen     localhost:110;
    #		protocol   pop3;
    #		proxy      on;
    #	}
    # 
    #	server {
    #		listen     localhost:143;
    #		protocol   imap;
    #		proxy      on;
    #	}
    #}
    

      server  代理实例配置

    #负载均衡使用参数 zwptWeb下可以有多个server并且设置权重
    upstream zwptWeb{                                                         
    	server 172.24.5.120:8080;                                                
    }
    server {
    	listen 9090 default_server;
    	server_name _;
    #web转发
    	location / {
    		proxy_pass http://zwptWeb;
    	}
    #静态文件代理  
    	location /group1/M00/ {
    		add_header Access-Control-Allow-Origin *;  
    		alias /usr/docker-data/fdfs-storage/storage/data/;
    	}
    }
    

      

  • 相关阅读:
    伸展树(SplayTree)的实现
    map的访问
    #pragma warning(disable 4786)
    debian sftp/ssh197
    debian 配置静态ip197
    deepin 安装tar.gz197
    npm构建vue项目197
    linux 常用命令197
    application/force-download 不生效197
    reids 安装197
  • 原文地址:https://www.cnblogs.com/cyh1282656849/p/13186955.html
Copyright © 2020-2023  润新知