Blazor测试应用程序的问题。我运行这个应用程序。在Apache服务器上使用代理:
<VirtualHost *:*>
RequestHeader set \"X-Forwarded-Proto\" expr=%{REQUEST_SCHEME}
</VirtualHost>
Listen 192.168.0.190:44366
# for ASP.NET app TestBlazor
<VirtualHost 192.168.0.190:44366>
ProxyPreserveHost On
ProxyP
在websphere 7中启动应用程序时出现以下错误。
日志定位- /apps/WebSphere/profiles7/node/logs/server1/SystemOut.log
[8/22/17 18:06:04:009 CEST] 0000003c WebContainer E com.ibm.ws.webcontainer.WebContainer handleRequest SRVE0255E: A WebGroup/Virtual Host to handle / has not been defined.
[8/22/17 18:06:16:282 CEST] 0000001
在我的开发工作站(实际上包含在/etc/apache2/ apache.conf /andrew.conf)中,我有以下内容:
<Directory "/Users/andrew/Sites/">
Options Indexes MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<VirtualHost *:80>
DocumentRoot /Users/andrew/Sites/mysite/public
Server