mirror of https://github.com/wg-easy/wg-easy
19 changed files with 338 additions and 258 deletions
@ -0,0 +1,5 @@ |
|||
{ |
|||
"tabWidth": 4, |
|||
"semi": true, |
|||
"singleQuote": true |
|||
} |
@ -0,0 +1,31 @@ |
|||
--- |
|||
title: No Reverse Proxy |
|||
--- |
|||
|
|||
# asd |
|||
|
|||
/// 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. |
@ -1,5 +0,0 @@ |
|||
--- |
|||
title: Edit Account |
|||
--- |
|||
|
|||
TODO |
@ -1,5 +0,0 @@ |
|||
--- |
|||
title: Login |
|||
--- |
|||
|
|||
TODO |
@ -1,87 +1,87 @@ |
|||
site_name: "wg-easy" |
|||
site_description: "The easiest way to run WireGuard VPN + Web-based Admin UI." |
|||
site_author: "WireGuard Easy" |
|||
site_name: 'wg-easy' |
|||
site_description: 'The easiest way to run WireGuard VPN + Web-based Admin UI.' |
|||
site_author: 'WireGuard Easy' |
|||
copyright: > |
|||
<p> |
|||
© <a href="https://github.com/wg-easy"><em>Wireguard Easy</em></a><br/> |
|||
<span>This project is licensed under AGPL-3.0-only.</span><br/> |
|||
<span>This project is not affiliated, associated, authorized, endorsed by, or in any way officially connected with Jason A. Donenfeld, ZX2C4 or Edge Security</span><br/> |
|||
<span>"WireGuard" and the "WireGuard" logo are registered trademarks of Jason A. Donenfeld</span> |
|||
</p> |
|||
<p> |
|||
© <a href="https://github.com/wg-easy"><em>Wireguard Easy</em></a><br/> |
|||
<span>This project is licensed under AGPL-3.0-only.</span><br/> |
|||
<span>This project is not affiliated, associated, authorized, endorsed by, or in any way officially connected with Jason A. Donenfeld, ZX2C4 or Edge Security</span><br/> |
|||
<span>"WireGuard" and the "WireGuard" logo are registered trademarks of Jason A. Donenfeld</span> |
|||
</p> |
|||
|
|||
repo_url: https://github.com/wg-easy/wg-easy |
|||
repo_name: wg-easy |
|||
|
|||
edit_uri: "edit/master/docs/content" |
|||
edit_uri: 'edit/master/docs/content' |
|||
|
|||
docs_dir: "content/" |
|||
docs_dir: 'content/' |
|||
|
|||
site_url: https://wg-easy.github.io/wg-easy |
|||
|
|||
theme: |
|||
name: material |
|||
favicon: assets/logo/favicon.png |
|||
logo: assets/logo/logo.png |
|||
icon: |
|||
repo: fontawesome/brands/github |
|||
features: |
|||
- navigation.tabs |
|||
- navigation.top |
|||
- navigation.expand |
|||
- navigation.instant |
|||
- content.action.edit |
|||
- content.action.view |
|||
- content.code.annotate |
|||
palette: |
|||
# Light mode |
|||
- media: "(prefers-color-scheme: light)" |
|||
scheme: default |
|||
primary: grey |
|||
accent: red |
|||
toggle: |
|||
icon: material/weather-night |
|||
name: Switch to dark mode |
|||
# Dark mode |
|||
- media: "(prefers-color-scheme: dark)" |
|||
scheme: slate |
|||
primary: grey |
|||
accent: red |
|||
toggle: |
|||
icon: material/weather-sunny |
|||
name: Switch to light mode |
|||
name: material |
|||
favicon: assets/logo/favicon.png |
|||
logo: assets/logo/logo.png |
|||
icon: |
|||
repo: fontawesome/brands/github |
|||
features: |
|||
- navigation.tabs |
|||
- navigation.top |
|||
- navigation.expand |
|||
- navigation.instant |
|||
- content.action.edit |
|||
- content.action.view |
|||
- content.code.annotate |
|||
palette: |
|||
# Light mode |
|||
- media: '(prefers-color-scheme: light)' |
|||
scheme: default |
|||
primary: grey |
|||
accent: red |
|||
toggle: |
|||
icon: material/weather-night |
|||
name: Switch to dark mode |
|||
# Dark mode |
|||
- media: '(prefers-color-scheme: dark)' |
|||
scheme: slate |
|||
primary: grey |
|||
accent: red |
|||
toggle: |
|||
icon: material/weather-sunny |
|||
name: Switch to light mode |
|||
|
|||
extra: |
|||
version: |
|||
provider: mike |
|||
version: |
|||
provider: mike |
|||
|
|||
markdown_extensions: |
|||
- toc: |
|||
anchorlink: true |
|||
- abbr |
|||
- attr_list |
|||
- pymdownx.blocks.admonition: |
|||
types: |
|||
- danger |
|||
- note |
|||
- info |
|||
- question |
|||
- warning |
|||
- pymdownx.details |
|||
- pymdownx.superfences: |
|||
custom_fences: |
|||
- name: mermaid |
|||
class: mermaid |
|||
format: !!python/name:pymdownx.superfences.fence_code_format |
|||
- pymdownx.tabbed: |
|||
alternate_style: true |
|||
slugify: !!python/object/apply:pymdownx.slugs.slugify |
|||
kwds: |
|||
case: lower |
|||
- pymdownx.tasklist: |
|||
custom_checkbox: true |
|||
- pymdownx.magiclink |
|||
- pymdownx.inlinehilite |
|||
- pymdownx.tilde |
|||
- pymdownx.emoji: |
|||
emoji_index: !!python/name:material.extensions.emoji.twemoji |
|||
emoji_generator: !!python/name:material.extensions.emoji.to_svg |
|||
- toc: |
|||
anchorlink: true |
|||
- abbr |
|||
- attr_list |
|||
- pymdownx.blocks.admonition: |
|||
types: |
|||
- danger |
|||
- note |
|||
- info |
|||
- question |
|||
- warning |
|||
- pymdownx.details |
|||
- pymdownx.superfences: |
|||
custom_fences: |
|||
- name: mermaid |
|||
class: mermaid |
|||
format: !!python/name:pymdownx.superfences.fence_code_format |
|||
- pymdownx.tabbed: |
|||
alternate_style: true |
|||
slugify: !!python/object/apply:pymdownx.slugs.slugify |
|||
kwds: |
|||
case: lower |
|||
- pymdownx.tasklist: |
|||
custom_checkbox: true |
|||
- pymdownx.magiclink |
|||
- pymdownx.inlinehilite |
|||
- pymdownx.tilde |
|||
- pymdownx.emoji: |
|||
emoji_index: !!python/name:material.extensions.emoji.twemoji |
|||
emoji_generator: !!python/name:material.extensions.emoji.to_svg |
|||
|
Loading…
Reference in new issue