Nginx 前缀/子目录

Nginx 前缀/子目录

发生的情况是 GLPI 项目没有加载文件(js、css、php 等)。

本地 URL 是http://localhost/glpi-grupo/,但是 Elements 中的所有文件都缺失了,如下/glpi-grupo所示:http://localhost/style.css

在此处输入图片描述

我需要强制他们加载子目录/glpi-grupo

我正在使用 Nginx 和 Traefik,全部在 Docker 容器中。

我的 traefik 规则:

traefik.frontend.rule: Host:localhost; PathPrefixStrip:/glpi-grupo

我的 Nginx 配置:

server {
    listen 80;
    index index.php index.html;
    error_log /var/log/nginx/error.log;
    access_log /var/log/nginx/access.log;
    root /var/www/html;
    location / {
        try_files $uri $uri/ /index.php$is_args$args;
    }
    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param SCRIPT_NAME $fastcgi_script_name;
        fastcgi_param SERVER_NAME $host;
        fastcgi_index index.php;
        fastcgi_pass glpi-grupo:9000;
        fastcgi_param PATH_INFO $fastcgi_path_info;
    }
}

相关内容