migrate
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
Hestia Control Panel Setup
|
||||
|
||||
** 1. Change to sudo **
|
||||
|
||||
sudo su -
|
||||
|
||||
** 2. Get the install script **
|
||||
|
||||
wget https://raw.githubusercontent.com/hestiacp/hestiacp/release/install/hst-install.sh
|
||||
|
||||
|
||||
** 3. Important - CHANGE THE NEXT LINE TO USE YOUR OWN DETAILS, recommend using a subdomain like 'hcp' for your panel as I've done here **
|
||||
bash hst-install.sh --interactive no --email admin@mcfetridge.us --password S>>>>>>>>123 --hostname hcp.mcfetridge.us -f
|
||||
|
||||
** Make sure to capture this information
|
||||
Ready to get started? Log in using the following credentials:
|
||||
|
||||
Admin URL: https://hcp.mcfetridge.us:8083
|
||||
Backup URL: https://129.213.145.20:8083
|
||||
Username: admin
|
||||
Password: The password you chose during installation. My Default = S>>>>>>>>123
|
||||
|
||||
Sendblue SMTP key for HCP: xsmtpsib-1d075358c732f0ae42994d033cd552a43b867e08ddf1057f2414dec226c34ecc-UP2QRnLwmZvB7N3V
|
||||
|
||||
SMTP Server: smtp-relay.brevo.com
|
||||
Port: 587
|
||||
Login: mmcfetridg@aol.com
|
||||
Password: Is the smtp key generated.
|
||||
|
||||
For a smoother setup you can point the subdomain for your hostname over to the Oracle public IP address. In our video we used Namecheap, but all domain hosts will have a similar setup.
|
||||
|
||||
After installing, the ports you’ll need to add to your ingress rules are here:
|
||||
|
||||
8083,80,443,143,993,110,995,25,465,587
|
||||
|
||||
|
||||
|
||||
Blog: https://ideaspot.com.au/blog/cloudflare-hestia-setup/
|
||||
YouTube: https://www.youtube.com/watch?v=BK7qyPa-VmI
|
||||
@@ -0,0 +1,11 @@
|
||||
PUID=1000
|
||||
PGID=1000
|
||||
# TZ for container timezone
|
||||
TZ=America/New_York
|
||||
SMTP_HOST=smtp.zoho.com
|
||||
SMTP_FROM_NAME=miker@mcfetridge.us
|
||||
SMTP_AUTH_STRATEGY=TLS
|
||||
SMTP_FROM_EMAIL=miker@mcfetridge.us
|
||||
SMTP_USER=miker@mcfetridge.us
|
||||
SMTP_PASSWORD="!Sucyetat123"
|
||||
SMTP_PORT=465
|
||||
@@ -0,0 +1,37 @@
|
||||
services:
|
||||
mealie:
|
||||
image: ghcr.io/mealie-recipes/mealie:latest # Specifies the Mealie Docker i>
|
||||
container_name: mealie # Names the container for easier>
|
||||
restart: always
|
||||
networks:
|
||||
- proxy # Ensures the container restart>
|
||||
# ports:
|
||||
# - "9925:9000" # Maps port 9925 on the host to >
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
memory: 1000M # Limits the container to use a >
|
||||
volumes:
|
||||
- /home/miker/docker/mealie/data:/app/data/ # Persists data in>
|
||||
- ./config/addons_config/mealie/config.yaml:/config/config.yanl
|
||||
environment:
|
||||
- ALLOW_SIGNUP=false # Allows new user signups on the>
|
||||
- PUID=${PUID} # Sets the user ID for the conta>
|
||||
- PGID=${PGID} # Sets the group ID for the cont>
|
||||
- TZ=${TZ} # Sets the timezone for the cont>
|
||||
- MAX_WORKERS=1 # Limits the number of workers t>
|
||||
- WEB_CONCURRENCY=1 # Sets the concurrency level for>
|
||||
- BASE_URL=mealie.mikemcfetridge.com # The base URL where Mealie is a>
|
||||
# Email Settings
|
||||
- SMTP_HOST=${SMTP_HOST}
|
||||
- SMTP_PORT=${SMTP_PORT}
|
||||
- SMTP_FROM_NAME=${SMTP_FROM_NAME}
|
||||
- SMTP_AUTH_STRATEGY=${SMTP_AUTH_STRATEGY}
|
||||
- SMTP_FROM_EMAIL=${SMTP_FROM_EMAI}
|
||||
- SMTP_USER=${SMTP_USER}
|
||||
- SMTP_PASSWORD=${SMTP_PASSWORD}
|
||||
env_file:
|
||||
- .env
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
Reference in New Issue
Block a user