generated from ddev/ddev-addon-template
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* browsersync should default to HTTPS * update test to verify HTTPS * additional notes about HTTPS in readme * replace test comment * https-support PR: Make it report the right URL, improve tests (#31) * Improve output of ddev browsersync to show https URL * Update tests and github setup to make work with https * Do mkcert -install so we can trust certs Co-authored-by: tyler36 <[email protected]> Co-authored-by: Randy Fay <[email protected]>
- Loading branch information
1 parent
45bf957
commit 3cd36d9
Showing
6 changed files
with
37 additions
and
28 deletions.
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
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
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 |
---|---|---|
@@ -1,9 +1,7 @@ | ||
#!/usr/bin/expect -f | ||
|
||
set PROJNAME $::env(PROJNAME) | ||
set timeout -1 | ||
set timeout 10 | ||
|
||
spawn ddev browsersync | ||
expect "http://${PROJNAME}.ddev.site:3000" | ||
|
||
expect "wait forever" | ||
expect "https?://${PROJNAME}.ddev.site:3000" |
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