caddy到nginx转换

ma8fv8wu  于 2023-10-17  发布在  Nginx
关注(0)|答案(1)|浏览(106)

我想把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;
}
zd287kbt

zd287kbt1#

这里你是我解决方案,如下所示,我已经更新了别名,它得到了解决。

location /v1/javascripts/ {
        alias /appdata/www/v1/javascripts/;
        expires 0;
        add_header Cache-Control "no-cache, no-store, must-revalidate";
        add_header Pragma "no-cache";        
        }
}

相关问题