mirror of
https://github.com/wg-easy/wg-easy.git
synced 2026-04-13 08:19:23 +00:00
Some checks failed
Mark stale issues and pull requests / stale (push) Has been cancelled
Lint / Check Docs (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Lint / Lint (format:check) (push) Has been cancelled
Lint / Lint (lint) (push) Has been cancelled
Lint / Lint (typecheck) (push) Has been cancelled
Nightly / Build & Deploy Docker (push) Has been cancelled
Nightly / Build & Deploy Docs (push) Has been cancelled
* improve docs and formatting * lint in ci avoid using bundled prettier from vscode extension * fix action, typos * remove header * remove unused deps
30 lines
765 B
Markdown
30 lines
765 B
Markdown
---
|
|
title: No Reverse Proxy
|
|
---
|
|
|
|
/// warning | Insecure
|
|
|
|
This is insecure. You should use a reverse proxy to secure the connection.
|
|
|
|
Only use this method if you know what you are doing.
|
|
///
|
|
|
|
If you only allow access to the web UI from your local network, you can skip the reverse proxy setup. This is not recommended, but it is possible.
|
|
|
|
## Setup
|
|
|
|
- Edit the `docker-compose.yml` file and uncomment `environment` and `INSECURE`
|
|
|
|
- Set `INSECURE` to `true` to allow access to the web UI over a non-secure connection.
|
|
|
|
- The `docker-compose.yml` file should look something like this:
|
|
|
|
```yaml
|
|
environment:
|
|
- INSECURE=true
|
|
```
|
|
|
|
- Save the file and restart `wg-easy`.
|
|
|
|
- Make sure that the Web UI is not accessible from outside your local network.
|