-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
0 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,3 @@ STREAM_KEY=hackme123 | |
|
||
# SSL settings | ||
SSL_HOSTNAME=stream.example.org | ||
SSL_EMAIL=[email protected] |
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 |
---|---|---|
|
@@ -54,7 +54,6 @@ ask_user "DO_UPDATES" "y" "Do you want to perform all OS updates? (y/n)" "y/n" | |
ask_user "STREAM_KEY" "hackme123" "Pick a stream key for Owncast" "str" | ||
ask_user "ADMIN_PASSWORD" "admin123" "Choose an admin password for Owncast" "str" | ||
ask_user "SSL_HOSTNAME" "owncast.local" "Specify a hostname for the proxy (for example: owncast.example.org)" "host" | ||
ask_user "SSL_EMAIL" "[email protected]" "Specify an email address for SSL (for example: [email protected])" "email" | ||
|
||
# Set system timezone | ||
set_timezone Europe/Amsterdam | ||
|
@@ -87,7 +86,6 @@ echo -e "${BLUE}►► Filling in the .env file with provided values${NC}" | |
sed -i "s|ADMIN_PASSWORD=.*|ADMIN_PASSWORD=${ADMIN_PASSWORD}|g" "${ENV_FILE}" | ||
sed -i "s|STREAM_KEY=.*|STREAM_KEY=${STREAM_KEY}|g" "${ENV_FILE}" | ||
sed -i "s|SSL_HOSTNAME=.*|SSL_HOSTNAME=${SSL_HOSTNAME}|g" "${ENV_FILE}" | ||
sed -i "s|SSL_EMAIL=.*|SSL_EMAIL=${SSL_EMAIL}|g" "${ENV_FILE}" | ||
|
||
# Instructions for next steps | ||
echo -e "\n\n${GREEN}✓ Installation set up at ${INSTALL_DIR}${NC}" | ||
|