2016-12-22 15 views
0

우리는 학교 프로젝트를 작성 중입니다. 학교마다 다른 하위 도메인이 필요하며 사용자가 달라야합니다. 모든 이메일은 다른 사용자와 다른 하위 도메인에 등록 할 수 있습니다.하나 이상의 프로젝트에 대한 Firebase 하위 도메인 와일드 카드

도메인과 모든 하위 도메인을 *.example.com wildcard 인 프로젝트에 연결하고자합니다. 하위 도메인은 값으로 읽습니다. 나는 우리가 아래의 구조로 그것을 관리 할 수 ​​있다고 생각한다.

실시 예 1;

 requestUrl   |  firebaseProject     |  displayUrl 
https://example.com  ==> https://projectMain.firebaseapp.com ==> https://example.com 
https://sub1.example.com ==> https://projectSub1.firebaseapp.com ==> https://sub1.example.com 
https://sub2.example.com ==> https://projectSub2.firebaseapp.com ==> https://sub2.example.com 

/// OR

예 2;

 requestUrl   |  firebaseProject    |  displayUrl 
https://example.com  ==> https://project.firebaseapp.com ==> https://example.com 
https://sub1.example.com ==> https://project.firebaseapp.com ==> https://sub1.example.com 
https://sub2.example.com ==> https://project.firebaseapp.com ==> https://sub2.example.com 

그럴 가능성이 있습니까?

답변

1

불행히도 Firebase Hosting에서는 지원되지 않습니다. 호스팅 사이트에는 하나의 표준 도메인 만있을 수 있으며 다른 모든 하위 도메인은 표준 도메인으로 리디렉션됩니다.

+0

Firebase 지원팀에서 나에게 똑같이 말했습니다. App.example1.com, app.example2.com 등처럼 할 것입니다. –