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
{"lastUpload":"2021-01-04T17:56:00.770Z","extensionVersion":"v3.4.3"} |
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
#!/usr/bin/env bash | |
DOMAIN="" # Your Route53 TLD (ex: mydomain.com) | |
SUBDOMAIN="" # The meeting subdomain (ex: meet (for meet.mydomain.com)) | |
CONFIGURE_AUTH=true # Boolean to configure internal_plain auth or not | |
PROSODY_USER="" # If you're configuring auth, the user account name (will login as ${PROSODY_USER}@${SUBDOMAIN}.${DOMAIN} ) | |
PROSODY_PASS="" # If you're configuring auth, the user password (escape special characters) | |
AWS_ACCESS_KEY="" # Your AWS Access Key | |
AWS_SECRET_KEY="" # Your AWS Secret Key | |
LETS_ENCRYPT_EMAIL="" # Email address to use for Let's Encrypt certificate |
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
FROM ubuntu:22.04 | |
LABEL maintainer="Taylor Otwell" | |
ARG WWWGROUP | |
ARG NODE_VERSION=18 | |
ARG POSTGRES_VERSION=15 | |
WORKDIR /var/www/html |
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
set -g mode-keys vi | |
# Change border color of the active pane | |
set-option -g pane-active-border-style fg=blue |