Apacheのサイトの構成ファイルの以降のセクションでDocumentRootを変数として使用する方法はありますか?
以下のようなもの:
DocumentRoot /var/www/myNiceRoot <Directory $DocumentRoot/mySubDir> ... </>
define 変数を使用して、それを使用できます。
Define droot /var/www/html
後で使用します
DocumentRoot ${droot}/site1
等々。