私は自分の中に次のコンテンツを持っており、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/