1개 답변
- 최신
- 최다 투표
- 가장 많은 댓글
1
Hello.
Is it possible for you to share the web server configuration file?
Also, could you please share the directory structure up to the document root?
Just to be safe, if you are using Apache, you can distribute document roots for each domain with the following settings.
https://httpd.apache.org/docs/2.4/en/vhosts/name-based.html
<VirtualHost *:80>
# This first-listed virtual host is also the default for *:80
ServerName www.example.com
ServerAlias example.com
DocumentRoot "/www/domain"
</VirtualHost>
<VirtualHost *:80>
ServerName other.example.com
DocumentRoot "/www/otherdomain"
</VirtualHost>
관련 콘텐츠
- 질문됨 2달 전
- 질문됨 일 년 전
- AWS 공식업데이트됨 8달 전
- AWS 공식업데이트됨 8달 전
- AWS 공식업데이트됨 8달 전
- AWS 공식업데이트됨 2년 전