我想把caddy转换成nginx,但有些配置不起作用。我分享的一些配置如下。
球童:
test-js.test.com.tr {
import tls_config
import access_log "js"
root * /appdata/www/v1
file_server
import common_header
header /v1/javascripts/* {
Cache-Control "no-cache, no-store, must-revalidate"
Pragma "no-cache"
Expires 0
}
}
nginx:
server {
listen 9625;
server_name test-js.test.com.tr;;
error_page 404 =200 /index.html;
location ~* \.(js|jpg|png|css)$ {
root /appdata/www/v1;
expires 30d;
}
1条答案
按热度按时间zd287kbt1#
这里你是我解决方案,如下所示,我已经更新了别名,它得到了解决。