siemenstutorials / Docker-Caddy-Trojan

Docker +Caddy+Trojan

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker-Caddy-Trojan

Trojan server and Caddy integration with Docker compose。

Trojan server listens port 443. For https requests from normal sources, Trojan server will forward them to Caddy server for processing and return to the Web page while requests from Trojan client will be proxied by Trojan server which like V2ray+Websocket+TLS avoid GFW detection by disguising requests.

Usage

Git clone this repo then change directory to this project.

  1. Modify ./caddy/Caddyfile:

    www.yourdomain.com:80 {
        root /usr/src/trojan
        log /usr/src/caddy.log
        index index.html
    }
    
    www.yourdomain.com:443 {
        root /usr/src/trojan
        log /usr/src/caddy.log
        index index.html
    }
    

    Replace www.yourdomain.com with your own domain name.

  2. Modify ./trojan/config/config.json:

    Change your_password to your own password on config:json:8 , this is your trojan password just safekeeping.

    Change your_domain_name to your own domain name on config:json:12-13, this is your domain ssl certification path, Caddy server generate certs automatically on the path /ssl/your_domain_name/your_domain_name.crt

  3. Run docker-compose up or docker-compose up -d with Daemon mode

  4. When each container is successfully built, it means that your Trojan and Caddy servers are working well.

Tips

About

Docker +Caddy+Trojan


Languages

Language:Shell 80.8%Language:HTML 12.4%Language:Dockerfile 6.8%