如何使用 nginx 作为反向代理将所有请求发送到 varnish

如何使用 nginx 作为反向代理将所有请求发送到 varnish

我有一台 centos 8,Varnish 在端口 80 上,与端口 8080 上的 apache 连接

下面是我的 nginx 配置。

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    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;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    include /etc/nginx/conf.d/*.conf;

    server {
    listen *:443 ssl http2 default_server;
    listen [::]:443 ssl http2 default_server;
            server_name site.com;
            ssl_certificate /etc/letsencrypt/live/www.site.com/fullchain.pem;
            ssl_certificate_key /etc/letsencrypt/live/www.site.com/privkey.pem;
            location / {
                proxy_pass http://127.0.0.1:80;
                proxy_set_header X-Real-IP  $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header X-Forwarded-Proto $https;
                proxy_set_header X-Forwarded-Port 443;
                proxy_set_header Host $host;
            }
    }

}

我认为 443 请求现在没问题了。但是非 SSL 请求怎么办?我想对非 SSL 请求做同样的事情,或者怎么做?有什么想法吗?

答案1

我可以提出 3 种可能的解决方案:

  1. 不用担心端口上的纯 HTTP 80,只需让 Varnish 处理即可
  2. 为纯 HTTP 创建 vhost
    • 配置 Varnish 监听端口6081
    • server从 Nginx 配置中复制块
    • 调整块以确保它监听端口80
    • server从重复的块中删除 SSL 位
    • 确保您的代理所有请求都发送到端口6081
  3. 为纯 HTTP 创建重定向虚拟主机
    • 配置 Varnish 监听端口6081
    • 创建一个server块,将所有 HTTP 请求重定向到 HTTPS 等效请求

相关内容