Nginx 容器作为 Tomcat 容器的代理缓存

Nginx 容器作为 Tomcat 容器的代理缓存

我正在尝试使用 nginx 作为 tomcat 的代理缓存,并使用两个单独的容器。我从官方 nginx 映像创建了一个 nginx 容器;对于 tomcat 也是如此,监听端口 8080。

现在,我应该如何将 nginx 配置为 tomcat 内容的代理缓存?

tomcat webserver 中的内容位于路径:localhost:8080/shaka-player-master/demo/

这是 /etc/nginx 中的 nginx.conf:

user  nginx;
worker_processes  1;

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


events {
    worker_connections  1024;
}


http {

    proxy_cache_path /tmp/nginx levels=1:2 keys_zone=my_zone:10m inactive=60m;
    proxy_cache_key "$scheme$request_method$host$request_uri";

    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;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;
}

我必须说,从 nginx docker 官方镜像来看,没有文件夹 /etc/nginx/sites-available 也没有 /etc/nginx/site-enabled。

我想说的是,在 nginx 容器的路径 /usr/share/nginx/html/ 中,只有一个从 nginx 镜像自动创建的 index.html。唯一的其他配置文件位于 /etc/nginx/conf.d/default.conf... 下:

server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/log/host.access.log  main;

    location / {
         proxy_cache my_zone;
         add_header X-Proxy-Cache $upstream_cache_status;

         include proxy_params;
         proxy_pass http://localhost:8080/shaka-player-master/demo;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

我的目标就是:当我跑步的时候http://本地主机:9000(或同一端口上的某些其他路径),第一次(缓存未命中)我可以提供来自 localhost:8080/shaka-player-master/demo/index.html 的内容

然后,当我重新加载 localhost:9000 时,出现缓存命中。

我将使用 nginx 作为代理缓存,因为我将使用更多 nginx 实例(容器)来设置 CDN。

我希望有人能帮助我解决 nginx 配置问题,因为我花了很多时间试图解决这个问题。

谢谢。

答案1

我没有看到您的配置中有任何可以启用缓存的内容。代理人是:充当中介的服务器。有时它缓存,有时它还会执行其他中间操作。proxy_pass不实现缓存。

最简单的ngingx缓存proxy_cache_path加号proxy_cache

相关内容