• nginx相关的一些记录


    http redirect to https:

            if ($http_cf_visitor ~ '"scheme":"http"'){
                rewrite ^/(.*)$ https://$http_host$1 last;
            }
            proxy_pass http://scholar.google.com;
            proxy_set_header Host scholar.google.com;

     when 403 404 error then query node_app:

        location / {
            root   /www/www.site.com/public_html;
            index  index.html;
    
            location ~ /$ {
                error_page 403 404 = @node_app;
            }
    
            location = /index.html {
                expires 5m;
            }
        }

    node_app:

        location @node_app {
            proxy_pass   http://127.0.0.1:9000;
            proxy_set_header Host $http_host;
        }

     动态反向代理:

    resolver 223.5.5.5;
    
        location ~ /(w+)(.*)$ {
            proxy_pass http://m.$1.domain.com$2?$args;
            proxy_set_header Host m.$1.domain.com;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header User-Agent $http_user_agent;
            sub_filter "/ "http://$http_host/$1/;
            #sub_filter "http://m.$1.domain.com/ "http://$http_host/$1/;
            sub_filter_once off;
        }

     编译nginx常用配置选项:

    ./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-mail --with-mail_ssl_module --with-file-aio --with-ipv6 --with-http_spdy_module --with-cc-opt='-O2 -g -pipe -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic
  • 相关阅读:
    CTF-域渗透--SSH服务
    CTF-域渗透--SMB信息泄露
    CTF-域渗透--FTP服务后门利用
    Codeforces Round #628 (Div. 2)
    模板
    模板
    Educational Codeforces Round 6
    Educational Codeforces Round 5
    模板
    Codeforces Round #627 (Div. 3)
  • 原文地址:https://www.cnblogs.com/afxcn/p/4043255.html
Copyright © 2020-2023  润新知