我正在尝试在 Nginx Web 服务器上配置 Varnish。
清漆配置
在文件中/etc/varnish/default.vcl
vcl 4.0;
backend default {
.host = "127.0.0.1";
.port = "8080";
}
sub vcl_recv {
}
sub vcl_backend_response {
set beresp.ttl = 10s;
set beresp.grace = 1h;
}
sub vcl_deliver {
}
在文件中/etc/default/varnish
START=yes
NFILES=131072
MEMLOCK=82000
DAEMON_OPTS="-a :80 \
-T localhost:6082 \
-f /etc/varnish/default.vcl \
-S /etc/varnish/secret \
-s malloc,256m"
Nginx 配置
在虚拟主机文件中/etc/nginx/sites-enabled/domain
server {
listen 8080;
root /var/www/html/domain.com/public_html;
index index.html index.htm index.php;
server_name domain.com www.domain.com;
include hhvm.conf;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
}
此配置不起作用。当我domain.com
在网络浏览器上打开该网站时,该网站不显示任何内容,但我打开的domain.com:8080
网站可以正常工作。
当我将端口更改为listen 80
虚拟主机时,domain.com
它可以工作,但 Varnish 不能同时在端口80
和8080
.
结果在curl -I
两个端口上运行后
我怎样才能解决这个问题。