Skip to content

Commit

Permalink
bump version to 0.1.7 and update README for ACME support
Browse files Browse the repository at this point in the history
  • Loading branch information
Aitthi committed Nov 3, 2024
1 parent e4d15de commit 3dcd503
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "easy-proxy"
version = "0.1.6"
version = "0.1.7"
edition = "2021"

[dependencies]
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Easy Proxy supports the following features:
- [x] HTTPS
- Certificate Management
- [x] Custom
- [ ] ACME (WIP)
- [x] ACME
- Service Endpoint
- [x] HTTP
- [ ] HTTPS
Expand Down Expand Up @@ -56,6 +56,8 @@ proxy:
http: "0.0.0.0:80"
https: "0.0.0.0:443"
config_dir: "/etc/easy-proxy/proxy"
# optional
acme_store: "/etc/easy-proxy/acme.json" # auto generated
pingora:
# https://github.com/cloudflare/pingora/blob/main/docs/user_guide/daemon.md
daemon: true
Expand Down Expand Up @@ -103,10 +105,12 @@ tls:
- name: my-tls
type: custom # acme, custom
# acme: # required if type is acme
# provider: letsencrypt # letsencrypt or buypass // optional default letsencrypt
# email: admin@domain.com
key: /etc/easy-proxy/ssl/localhost.key
cert: /etc/easy-proxy/ssl/localhost.crt
# chain: .config/ssl/localhost.chain.crt # optional
# chain: # optional
# - /etc/easy-proxy/ssl/chain.pem

# Routes to be proxied
routes:
Expand Down
1 change: 1 addition & 0 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ proxy:
http: "0.0.0.0:80"
https: "0.0.0.0:443"
config_dir: "/etc/easy-proxy/proxy"
acme_store: "/etc/easy-proxy/acme.json"
pingora:
daemon: true
threads: $(nproc)
Expand Down

0 comments on commit 3dcd503

Please sign in to comment.