「Apache による ASP.NET」の版間の差分
Kusakata.bot (トーク | 投稿記録) 細 (文字列「http://httpd.apache.org/」を「https://httpd.apache.org/」に置換) |
Kusanaginoturugi (トーク | 投稿記録) (→テスト: add == Troubleshooting ==) |
||
27行目: | 27行目: | ||
==テスト== |
==テスト== |
||
xsp がインストールされていて HTML のパスが {{ic|/httpd/html}} の場合、ブラウザを開いて http://server/xsp/ にアクセスすることで ASP.NET のテストファイルの概要を確認できます。 |
xsp がインストールされていて HTML のパスが {{ic|/httpd/html}} の場合、ブラウザを開いて http://server/xsp/ にアクセスすることで ASP.NET のテストファイルの概要を確認できます。 |
||
+ | |||
+ | == Troubleshooting == |
||
+ | |||
+ | === Application/Site Instance Hangs with high cpu usage. === |
||
+ | |||
+ | This is believed to be caused by a bug/incompatibility in the mod-mono module with SystemD versions above 239.303. |
||
+ | |||
+ | Currently there is no fix (other than a workaround) as the project appears to have ceased development. |
||
+ | |||
+ | See https://github.com/mono/mod_mono/issues/9 for more information. |
2021年10月5日 (火) 12:48時点における版
このページでは Mod_Mono を使用して Apache で ASP.NET サイトを表示する方法を説明します。
Mod_Mono のウェブサイト より:
- "Mod_Mono は人気のウェブサーバー Apache (https://httpd.apache.org/) に ASP.NET のサポートを追加する Apache 2.0/2.2 モジュールです。"
目次
インストール
mono と mod_monoAUR パッケージをインストールしてください。任意で ASP.NET のシンプルなウェブサーバーである xspAUR をインストールすることで設定のテストが行えます。
設定
/etc/httpd/conf/httpd.conf
を編集して以下の行を追加してください:
Include /etc/httpd/conf/extra/mod_mono.conf
それから httpd.service
を再起動してください。
これで Apache から ASP.NET のページが表示できるようになります。
AutoHosting
AutoHosting を使うことで、デプロイするたびに Apache を設定する手間が省けます。ディレクトリの中にアプリケーションを配置するだけで自動的に設定が行われるようになります。オプションを有効にするには /etc/httpd/conf/httpd.conf
に以下の行を追加してください:
# Choose ASP2.0 support instead of the default 1.0 MonoServerPath "/usr/bin/mod-mono-server4" # mono 4 MonoAutoApplication enabled
詳しくは http://www.mono-project.com/AutoHosting を参照してください。
テスト
xsp がインストールされていて HTML のパスが /httpd/html
の場合、ブラウザを開いて http://server/xsp/ にアクセスすることで ASP.NET のテストファイルの概要を確認できます。
Troubleshooting
Application/Site Instance Hangs with high cpu usage.
This is believed to be caused by a bug/incompatibility in the mod-mono module with SystemD versions above 239.303.
Currently there is no fix (other than a workaround) as the project appears to have ceased development.
See https://github.com/mono/mod_mono/issues/9 for more information.