Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
backend default { .host = "localhost"; .port = "8080"; }
在清漆配置中,应该分配什么端口?我在后端使用 Apache 监听,1740而 Nginx 正在监听80到proxy_passupstream 127.0.0.1:1740。
1740
80
proxy_pass
127.0.0.1:1740
为什么不只是 nginx + 清漆?
nginx 和 apache 都是 webserver,当然你可以使用 nginx proxy_pass... 但如果这是同一台服务器,我会放弃 apache 或 nginx... 选择一个。
无论如何,“Varnish 是一个 Web 应用程序加速器。你将它安装在你的 Web 应用程序之前,它会显着加速它。” (从他们网站的主页复制粘贴)
所以我认为首先你应该决定你是想要 nginx 还是 apache 有你的网络服务器。