nginx配置透明代理


來自:https://blog.csdn.net/weixin_34072458/article/details/91677177

user  nginx;
worker_processes  auto;

error_log  /var/log/nginx/error.log notice;
pid        /var/run/nginx.pid;

events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/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  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;
    resolver 8.8.8.8; # 如果訪問的是域名則需要加該配置
    #gzip  on;

    server {
    listen       80;
    server_name  localhost;
    location / {
      proxy_pass $scheme://$host$request_uri;
      #proxy_bind $remote_addr transparent; # 是否啟用透明代理
      proxy_set_header X-Real-IP $remote_addr;
 
    }
}
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM