-
-
Save locopine/d2ec55ac0bb910c1e0172225de90f54e to your computer and use it in GitHub Desktop.
proxy-manager
This file contains hidden or 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
APP_PORT=48080 | |
FORWARD_DB_PORT=43306 | |
FORWARD_REDIS_PORT=46379 | |
FORWARD_MEILISEARCH_PORT=47700 | |
FORWARD_MAILHOG_PORT=41025 | |
FORWARD_MAILHOG_DASHBOARD_PORT=48025 |
This file contains hidden or 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
version: "3" | |
services: | |
app: | |
image: 'jc21/nginx-proxy-manager:latest' | |
restart: always | |
ports: | |
# Public HTTP Port: | |
- '80:80' | |
# Public HTTPS Port: | |
- '443:443' | |
# Admin Web Port: | |
- '81:81' | |
environment: | |
# These are the settings to access your db | |
DB_SQLITE_FILE: "/data/database.sqlite" | |
# Uncomment this if IPv6 is not enabled on your host | |
DISABLE_IPV6: 'true' | |
volumes: | |
- ./data:/data | |
- ./letsencrypt:/etc/letsencrypt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment