-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#55 - Make http://localhost load dashboard
- Loading branch information
1 parent
b857a45
commit 0b3dd3c
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<VirtualHost *:80> | ||
|
||
DocumentRoot ${APP_ROOT}/sites/dashboard | ||
|
||
use vhost | ||
use site | ||
|
||
</VirtualHost> | ||
|
||
<VirtualHost *:443> | ||
|
||
use ssl default | ||
|
||
DocumentRoot ${APP_ROOT}/sites/dashboard | ||
|
||
use vhost | ||
use site | ||
|
||
</VirtualHost> |