QNAP Web サーバー (実行中の Apache) で vHost をセットアップしようとしています。サブドメインを読み込めないところで立ち往生しているようです。次のように、カスタム conf ファイルを apache.conf ファイルに含めました。
include /share/Web/customapache.conf
customapache ファイルには、次のものがあります。
NameVirtualHost *:80
ServerName 127.0.0.1
DocumentRoot "/share/Web/site1-home"
<Directory />
Order deny,allow
Deny from all
</Directory>
ServerSignature Off
ServerTokens Prod
NameVirtualHost *:80
<VirtualHost *:80>
ServerName localhost
# ServerAlias www.localhost
DocumentRoot "/share/Web/site1-home"
<Directory "/share/Web/site1-home">
Options FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName pods.localhost
# ServerAlias www.pods.localhost
DocumentRoot "/share/Web/site2-pods"
<Directory "/share/Web/site2-pods">
Options FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
私が抱えている問題を修正しようとして、複数の異なる例を試してきたので、おそらく少し混乱しています。私はLinuxにはかなり慣れていませんが、正直に言うとApacheです。NGINX ですべて正常に動作させることができましたが、QNAP との互換性の問題に遭遇しました。
基本的に、メインのリダイレクトは機能しているため、ベース ディレクトリは /share/Web/site1-home になりましたが、サブドメイン (pods.localhost) は機能していません。欠けている単純なもの、または必要のないものを追加したと確信しています。しかし、任意の支援、または正しい方向へのポイントでさえも大歓迎です.
よろしくカート