Source code for my website https://www.mylloon.fr
Find a file
Mylloon d8a1693dd7
Some checks are pending
ci/woodpecker/push/publish Pipeline is pending
* Doesnt convert in Rust the latex
* add math detection
* fix mermaid and code detection
2023-04-19 18:36:52 +02:00
.woodpecker add ci 2023-02-16 20:54:21 +01:00
src * Doesnt convert in Rust the latex 2023-04-19 18:36:52 +02:00
static Revert "remove gamer badge" 2023-04-16 13:20:17 +02:00
templates refer to root 2023-04-19 17:19:12 +02:00
.gitattributes add jpg lfs 2023-04-15 00:09:42 +02:00
.gitignore delete md files 2023-04-19 14:04:47 +02:00
Cargo.lock * Doesnt convert in Rust the latex 2023-04-19 18:36:52 +02:00
Cargo.toml * Doesnt convert in Rust the latex 2023-04-19 18:36:52 +02:00
Dockerfile useless mkdir 2023-04-19 15:26:11 +02:00
LICENSE Add year and author 2023-02-15 16:00:19 +01:00
README.md update volumes 2023-04-19 14:34:21 +02:00

EWP

Easy WebPage generator

dependency status status-badge

See issues

Use Docker Compose

version: "3.9"

services:
  ewp:
    image: git.mylloon.fr/anri/mylloon.fr:latest
    container_name: EWP
    volumes:
      - /here/your/path/config:/app/config
      - /here/your/path/data:/app/data
    ports:
      - 80:8080
    restart: unless-stopped
Do you want to make the site available on Tor as well?
version: "3.9"

services:
  tor:
    image: goldy/tor-hidden-service:latest
    container_name: Website_tor
    network_mode: bridge
    links:
      - ewp
    environment:
      EWP_TOR_SERVICE_HOSTS: "80:ewp:8080"
      EWP_TOR_SERVICE_VERSION: "3"
    volumes:
      - tor-keys:/var/lib/tor/hidden_service/
    secrets:
      - source: ewp
        target: ewp
        mode: 0400
    restart: unless-stopped

  ewp:
    image: git.mylloon.fr/anri/mylloon.fr:latest
    container_name: Website
    network_mode: bridge
    hostname: ewp
    volumes:
      - /here/your/path/ewp/app/config:/app/config
      - /here/your/path/ewp/app/data:/app/data
    ports:
      - 99:8080
    restart: unless-stopped

volumes:
  tor-keys:
    driver: local

# Use https://github.com/cathugger/mkp224o to generate a key
secrets:
  ewp:
    file: /here/your/path/ewp/hidden_service/hs_ed25519_secret_key

You can tell the Tor Browser that you are offering an onion link by specifying your address in the config.toml file.

onion = "http://youraddress.onion/"