我正在使用bitnami存储库使用kubernetes-helm部署php应用程序。
出了点问题,nginx无法正确提供css和js文件。我正在使用php-fpm
php文件始终返回200,一切正常。 但是CSS和JS错误403。
这是我的虚拟主机文件:
server {
listen 0.0.0.0:80;
server_name myapp.com;
root /app;
location / {
include /opt/bitnami/nginx/conf/mime.types;
try_files $uri $uri/index.php;
}
location ~ \.php$ {
# fastcgi_pass [PHP_FPM_LINK_NAME]:9000;
fastcgi_pass phpfpm:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
}
我尝试了诸如chmod,chown等之类的东西...我无法解决