我正在尝试将请求重定向到特定的url,以从路径(不一定是路径)中的其他文件夹加载文件
这是我尝试测试的最简单的方法,它不起作用。这是在我的gitlab.rb文件中
nginx['custom_gitlab_server_config'] = "location ~ ^/test/ {\n root /opt/gitlab/embedded/service/gitlab-rails/public/; \n proxy_cache off; \n proxy_pass http://gitlab-workhorse; \n internal; \n }\n"
我也尝试使用/test
,但不包括internal;
我在/ opt / gitlab / embedded / service / gitlab-rails / public /中有一个名为test.json的文件,但是当我转到mygitlabserver.com/test/test.json时,出现404错误。