Я запускаю nginx в AWS, и у меня работает два приложения, одно из которых - webapplication / AutoFinance и работает нормально. Это автофинансирование внутренне взаимодействует с / AppzillonServer, но я получаю 500 Internal Server error. И когда я проверяю браузер с помощьюпереход к / AppzillonServer Я получаю сообщение об ошибке 404 Not Found от nginx, почему я получаю эту ошибку, когда я настроил приложение, как показано ниже.Существуют другие настроенные приложения, которые я не могу контролировать или не могу изменить. Как заставить / AppzillonServer работать. Пожалуйста, предложите.
server {
# listen 80;
server_name localhost;
listen 443 ssl;
# ssl on;
# server_name 52.204.226.135;
ssl_certificate /etc/nginx/ssl/server.crt;
ssl_certificate_key /etc/nginx/ssl/server.key;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
index index.html index.htm;
root /usr/share/nginx/html;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
location /Showroom{
root /home/demouser;
index index.html;
}
# location /shp-portal {
# proxy_pass http://52.204.226.135:8080/portalserver/demoshpportal/home-member-page;
# }
location /portalserver {
proxy_pass http://127.0.0.1:8082/portalserver;
}
location /portal {
proxy_pass http://127.0.0.1:7777/portal;
}
location /AMSBBServices {
proxy_pass http://127.0.0.1:8082/AMSBBServices;
}
location ~ \.(mp3|mp4){
root /home/demouser;
}
location ~ ^/(card|mock)/ {
proxy_pass http://127.0.0.1:8000;
}
location /AutoFinanceBase{
proxy_pass http://127.0.0.1:8180/AutoFinanceBase;
}
location /AppzillonServer {
proxy_pass http://127.0.0.1:8180/AppzillonServer/Appzillon;
}
}