我有一个运行在http://192.168.0.2:8080/的应用程序。 index.html页面位于/web文件夹中,它在/css处请求静态文件(例如css)。 我想使用nginx作为反向代理,并让myapp.mydomain.com重定向到我的应用程序。 我在我的nginx.conf有以下配置: server { listen 80; server_name myapp.mydomain.com; satisfy any; location / { proxy_pass http://192.168.0.2:…