0

我在安装了 debian 的 linode 实例上运行 caddy 服务器。我正在使用 caddy 服务器代理到一个 hugo 服务器。hugo 服务器在本地工作,但不通过 caddy 服务器。它将加载内容,但style.min.css网站图标不会加载,并出现如下错误:

GET https://localhost:8081/css/style.min.css net::ERR_CONNECTION_REFUSED

任何帮助使它工作都会很棒!

球童文件:

mycustomdomain.com {
  root /home/sean/mycustomdomain.com
  gzip
  proxy / localhost:8081
  tls {
    dns linode
  }
}

雨果命令:

hugo server --disableLiveReload --port 8081
4

1 回答 1

2

想通了,所以为后代回答:

要解决此问题,请使用该http.hugo插件。新的Caddyfile看起来像这样:

mycustomdomain.com {
  root /hugo/site/dir/public
  hugo /hugo/site/dir
  gzip
  tls {
    dns linode
  }
}
于 2018-04-12T17:30:42.110 回答