ほぼ変更されていない Visual Studio テンプレート ASP.NET Core アプリケーションを Ubuntu 18.04 で実行しようとしています。次のガイドに従いました。https://docs.microsoft.com/en-gb/aspnet/core/host-and-deploy/linux-apache?view=aspnetcore-3.1。
しばらく試行錯誤した後、ASP.NET サービスを実行することができました。しかし、ページにアクセスすると、「503 サービスを利用できません」というエラーが表示されます。
私の Apache 設定:
<IfModule mod_ssl.c>
<VirtualHost *:80>
ServerName example.com
Redirect / https://example.com
Redirect /panel https://example.com/panel
Redirect /privacy https://example.com/privacy
</VirtualHost>
<VirtualHost *:443>
ServerName example.com
DocumentRoot /var/www/
ServerAdmin [email protected]
RewriteEngine On
ErrorLog "/var/log/apache2/rewrite"
LogLevel alert rewrite:trace6
# ASP.NET application
# launchSettings.json is configured to listen on this port
ProxyPass /panel https://localhost:33138/
ProxyPassReverse /panel https://localhost:33138/
ProxyPass /api/socket ws://localhost:44909/api/socket
ProxyPassReverse /api/socket ws://localhost:44909/api/socket
ProxyPass /pgadmin4 !
ProxyPass /privacy !
ProxyPass /contact !
ProxyPass /panel !
ProxyPass / http://localhost:44909/
ProxyPassReverse / http://localhost:44909/
SSLEngine on
SSLOptions +StrictRequire
SSLProtocol TLSv1
ServerAlias example.com
SSLCertificateFile /etc/letsencrypt/live/example.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>
systemctl status tpanel
これは(私の ASP デーモン)の結果です:
● tpanel.service - a .NET Core 3.1 server
Loaded: loaded (/etc/systemd/system/tpanel.service; disabled; vendor preset: enabled)
Active: active (running) since Fri 2019-12-13 10:16:21 CET; 4h 1min ago
Main PID: 2765 (dotnet)
Tasks: 16 (limit: 4915)
CGroup: /system.slice/tpanel.service
└─2765 /usr/bin/dotnet /var/www/TPanel/publish/TPanel.dll
Dec 13 10:16:22 vps-example dotnet[2765]: info: Microsoft.Hosting.Lifetime[0]
Dec 13 10:16:22 vps-example dotnet[2765]: Now listening on: http://localhost:5000
Dec 13 10:16:22 vps-example dotnet[2765]: info: Microsoft.Hosting.Lifetime[0]
Dec 13 10:16:22 vps-example dotnet[2765]: Now listening on: https://localhost:5001
Dec 13 10:16:22 vps-example dotnet[2765]: info: Microsoft.Hosting.Lifetime[0]
Dec 13 10:16:22 vps-example dotnet[2765]: Application started. Press Ctrl+C to shut down.
Dec 13 10:16:22 vps-example dotnet[2765]: info: Microsoft.Hosting.Lifetime[0]
Dec 13 10:16:22 vps-example dotnet[2765]: Hosting environment: Production
Dec 13 10:16:22 vps-example dotnet[2765]: info: Microsoft.Hosting.Lifetime[0]
Dec 13 10:16:22 vps-example dotnet[2765]: Content root path: /var/www/TPanel/publish
launchSettings.json
:
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:50015",
"sslPort": 44313
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"TPanel": {
"commandName": "TPanel",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "http://localhost:33138"
}
}
}
しかし、前述したように、私がアクセスするとexample.com/panel
503 エラーが表示されます。Web サイトのその他の部分は正常に動作します。
他の情報:
- 5001ポートを使用する別の無関係なアプリケーションを実行していますが、別のものに置き換えたので問題はないはずです。
33138
アプリケーションのポートを に設定するかに設定するかは関係ないようです5001
。何も変わりません。
答え1
launchSettings.json
VS Code の機能です。ここでは何も行いません。
アプリケーションはポート 5000 (HTTP) と 5001 (HTTPS) で実行されています。これはログで確認できる否定できない事実です。
Dec 13 10:16:22 vps-example dotnet[2765]: info: Microsoft.Hosting.Lifetime[0] Dec 13 10:16:22 vps-example dotnet[2765]: Now listening on: http://localhost:5000 Dec 13 10:16:22 vps-example dotnet[2765]: info: Microsoft.Hosting.Lifetime[0] Dec 13 10:16:22 vps-example dotnet[2765]: Now listening on: https://localhost:5001
Apache はポート 33138 でアプリケーションに接続するように構成されています。
ProxyPass /panel https://localhost:33138/ ProxyPassReverse /panel https://localhost:33138/
アプリケーションはそのポートをリッスンしないため、503 が ASP.NET Core ではなく Apache から送信されます。
アプリケーションの listen ポートを修正します。たとえば、appsettings.json
または を使用しますASPNETCORE_URLS
。詳細情報はここ。
ところで、 の末尾のスラッシュが一致していませんProxyPass
。これにより、さらなる問題が発生する可能性があります。