我的内容如下nginx.conf
,其他一切都原样
server {
listen 8081;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
#location / {
#root html;
#index index.html index.htm;
#}
location = /console {
proxy_pass http://localhost:7001/main/console;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
auth_basic "Admin Area";
auth_basic_user_file /etc/apache2/.htpasswd;
}
}
现在,当我启动http://localhost:8081/console
它时,它会成功启动网页,甚至要求我输入密码。
但是这个位置有一些静态内容/main/resources/org/nett/main/images/jquery-3.1.1.min.js
当我单击它时,它会抛出404
. 我应该在我的文件夹nginx.conf
中提供什么静态内容?/main/resources/org/nett/main/images/