mirror of https://github.com/wg-easy/wg-easy
committed by
GitHub
29 changed files with 1064 additions and 500 deletions
@ -0,0 +1,6 @@ |
|||
version: 2 |
|||
updates: |
|||
- package-ecosystem: "github-actions" |
|||
directory: "/" |
|||
schedule: |
|||
interval: "weekly" |
@ -10,6 +10,7 @@ jobs: |
|||
npmupbot: |
|||
name: NPM Update Bot 🤖 |
|||
runs-on: ubuntu-latest |
|||
if: github.repository_owner == 'wg-easy' |
|||
steps: |
|||
- name: Checkout repository |
|||
uses: actions/checkout@v4 |
|||
@ -34,6 +35,7 @@ jobs: |
|||
cd src |
|||
ncu -u |
|||
npm update |
|||
npm run buildcss |
|||
git config --global user.name 'NPM Update Bot' |
|||
git config --global user.email '[email protected]' |
|||
git add . |
|||
|
@ -0,0 +1,101 @@ |
|||
# Contributing to wg-easy |
|||
|
|||
First and foremost, thank you! We appreciate that you want to contribute to wg-easy, your time is valuable, and your contributions mean a lot to us. |
|||
|
|||
|
|||
## Important! |
|||
|
|||
By contributing to this project, you: |
|||
|
|||
* Agree that you have authored 100% of the content |
|||
* Agree that you have the necessary rights to the content |
|||
* Agree that you have received the necessary permissions from your employer to make the contributions (if applicable) |
|||
* Agree that the content you contribute may be provided under the Project license(s) |
|||
* Agree that, if you did not author 100% of the content, the appropriate licenses and copyrights have been added along with any other necessary attribution. |
|||
|
|||
|
|||
## Getting started |
|||
|
|||
**What does "contributing" mean?** |
|||
|
|||
Creating an issue is the simplest form of contributing to a project. But there are many ways to contribute, including the following: |
|||
|
|||
- Updating or correcting documentation |
|||
- Feature requests |
|||
- Bug reports |
|||
|
|||
|
|||
## Showing support for wg-easy |
|||
|
|||
Please keep in mind that open source software is built by people like you, who spend their free time creating things the rest the community can use. |
|||
|
|||
Don't have time to contribute? No worries, here are some other ways to show your support for wg-easy: |
|||
|
|||
- star the [project](https://github.com/wg-easy/wg-easy) |
|||
- tweet your support for wg-easy |
|||
|
|||
|
|||
## Issues |
|||
|
|||
Please only create issues for bug reports or feature requests. Issues discussing any other topics may be closed by the project's maintainers without further explanation. |
|||
|
|||
Do not create issues about bumping dependencies unless a bug has been identified and you can demonstrate that it effects this library. |
|||
|
|||
**Help us to help you** |
|||
|
|||
Remember that we’re here to help, but not to make guesses about what you need help with: |
|||
|
|||
- Whatever bug or issue you're experiencing, assume that it will not be as obvious to the maintainers as it is to you. |
|||
- Spell it out completely. Keep in mind that maintainers need to think about _all potential use cases_ of a library. It's important that you explain how you're using a library so that maintainers can make that connection and solve the issue. |
|||
|
|||
_It can't be understated how frustrating and draining it can be to maintainers to have to ask clarifying questions on the most basic things, before it's even possible to start debugging. Please try to make the best use of everyone's time involved, including yourself, by providing this information up front._ |
|||
|
|||
### Before creating an issue |
|||
|
|||
Please try to determine if the issue is caused by an underlying library, and if so, create the issue there. Sometimes this is difficult to know. We only ask that you attempt to give a reasonable attempt to find out. Oftentimes the readme will have advice about where to go to create issues. |
|||
|
|||
Try to follow these guidelines: |
|||
|
|||
- **Avoid creating issues for implementation help** - It's much better for discoverability, SEO, and semantics - to keep the issue tracker focused on bugs and feature requests - to ask implementation-related questions on [stackoverflow.com][so] |
|||
- **Investigate the issue** - Search for exising issues (open or closed) that address the issue, and might have even resolved it already. |
|||
- **Check the readme** - oftentimes you will find notes about creating issues, and where to go depending on the type of issue. |
|||
- Create the issue in the appropriate repository. |
|||
|
|||
### Creating an issue |
|||
|
|||
Please be as descriptive as possible when creating an issue. Give us the information we need to successfully answer your question or address your issue by answering the following in your issue: |
|||
|
|||
- **description**: (required) What is the bug you're experiencing? How are you using this library/app? |
|||
- **OS**: (required) what operating system are you on? |
|||
- **version**: (required) please note the version of wg-easy are you using |
|||
- **error messages**: (required) please paste any error messages into the issue, or a [gist](https://gist.github.com/) |
|||
- **extensions, plugins, helpers, etc** (if applicable): please list any extensions you're using |
|||
|
|||
|
|||
### Closing issues |
|||
|
|||
The original poster or the maintainers of wg-easy may close an issue at any time. Typically, but not exclusively, issues are closed when: |
|||
|
|||
- The issue is resolved |
|||
- The project's maintainers have determined the issue is out of scope |
|||
- An issue is clearly a duplicate of another issue, in which case the duplicate issue will be linked. |
|||
- A discussion has clearly run its course |
|||
|
|||
|
|||
## Next steps |
|||
|
|||
**Tips for creating idiomatic issues** |
|||
|
|||
Spending just a little extra time to review best practices and brush up on your contributing skills will, at minimum, make your issue easier to read, easier to resolve, and more likely to be found by others who have the same or similar issue in the future. At best, it will open up doors and potential career opportunities by helping you be at your best. |
|||
|
|||
The following resources were hand-picked to help you be the most effective contributor you can be: |
|||
|
|||
- The [Guide to Idiomatic Contributing](https://github.com/jonschlinkert/idiomatic-contributing) is a great place for newcomers to start, but there is also information for experienced contributors there. |
|||
- Take some time to learn basic markdown. We can't stress this enough. Don't start pasting code into GitHub issues before you've taken a moment to review this [markdown cheatsheet](https://gist.github.com/jonschlinkert/5854601) |
|||
- The GitHub guide to [basic markdown](https://help.github.com/articles/markdown-basics/) is another great markdown resource. |
|||
- Learn about [GitHub Flavored Markdown](https://help.github.com/articles/github-flavored-markdown/). And if you want to really go above and beyond, read [mastering markdown](https://guides.github.com/features/mastering-markdown/). |
|||
|
|||
At the very least, please try to: |
|||
|
|||
- Use backticks to wrap code. This ensures that it retains its formatting and isn't modified when it's rendered by GitHub, and makes the code more readable to others |
|||
- When applicable, use syntax highlighting by adding the correct language name after the first "code fence" |
@ -0,0 +1,275 @@ |
|||
'use strict'; |
|||
|
|||
const messages = { // eslint-disable-line no-unused-vars
|
|||
en: { |
|||
name: 'Name', |
|||
password: 'Password', |
|||
signIn: 'Sign In', |
|||
logout: 'Logout', |
|||
updateAvailable: 'There is an update available!', |
|||
update: 'Update', |
|||
clients: 'Clients', |
|||
new: 'New', |
|||
deleteClient: 'Delete Client', |
|||
deleteDialog1: 'Are you sure you want to delete', |
|||
deleteDialog2: 'This action cannot be undone.', |
|||
cancel: 'Cancel', |
|||
create: 'Create', |
|||
createdOn: 'Created on ', |
|||
lastSeen: 'Last seen on ', |
|||
totalDownload: 'Total Download: ', |
|||
totalUpload: 'Total Upload: ', |
|||
newClient: 'New Client', |
|||
disableClient: 'Disable Client', |
|||
enableClient: 'Enable Client', |
|||
noClients: 'There are no clients yet.', |
|||
showQR: 'Show QR Code', |
|||
downloadConfig: 'Download Configuration', |
|||
madeBy: 'Made by', |
|||
donate: 'Donate', |
|||
}, |
|||
ru: { |
|||
name: 'Имя', |
|||
password: 'Пароль', |
|||
signIn: 'Войти', |
|||
logout: 'Выйти', |
|||
updateAvailable: 'Доступно обновление!', |
|||
update: 'Обновить', |
|||
clients: 'Клиенты', |
|||
new: 'Создать', |
|||
deleteClient: 'Удалить клиента', |
|||
deleteDialog1: 'Вы уверены, что хотите удалить', |
|||
deleteDialog2: 'Это действие невозможно отменить.', |
|||
cancel: 'Закрыть', |
|||
create: 'Создать', |
|||
createdOn: 'Создано в ', |
|||
lastSeen: 'Последнее подключение в ', |
|||
totalDownload: 'Всего скачано: ', |
|||
totalUpload: 'Всего загружено: ', |
|||
newClient: 'Создать клиента', |
|||
disableClient: 'Выключить клиента', |
|||
enableClient: 'Включить клиента', |
|||
noClients: 'Пока нет клиентов.', |
|||
showQR: 'Показать QR-код', |
|||
downloadConfig: 'Скачать конфигурацию', |
|||
madeBy: 'Автор', |
|||
donate: 'Поблагодарить', |
|||
}, |
|||
tr: { // Müslüm Barış Korkmazer @babico
|
|||
name: 'İsim', |
|||
password: 'Şifre', |
|||
signIn: 'Giriş Yap', |
|||
logout: 'Çıkış Yap', |
|||
updateAvailable: 'Mevcut bir güncelleme var!', |
|||
update: 'Güncelle', |
|||
clients: 'Kullanıcılar', |
|||
new: 'Yeni', |
|||
deleteClient: 'Kullanıcı Sil', |
|||
deleteDialog1: 'Silmek istediğine emin misin', |
|||
deleteDialog2: 'Bu işlem geri alınamaz.', |
|||
cancel: 'İptal', |
|||
create: 'Oluştur', |
|||
createdAt: 'Şu saatte oluşturuldu: ', |
|||
lastSeen: 'Son görülme tarihi: ', |
|||
totalDownload: 'Toplam İndirme: ', |
|||
totalUpload: 'Toplam Yükleme: ', |
|||
newClient: 'Yeni Kullanıcı', |
|||
disableClient: 'İstemciyi Devre Dışı Bırak', |
|||
enableClient: 'İstemciyi Etkinleştir', |
|||
noClients: 'Henüz kullanıcı yok.', |
|||
showQR: 'QR Kodunu Göster', |
|||
downloadConfig: 'Yapılandırmayı İndir', |
|||
madeBy: 'Yapan Kişi: ', |
|||
donate: 'Bağış Yap', |
|||
changeLang: 'Dil Değiştir', |
|||
}, |
|||
no: { // github.com/digvalley
|
|||
name: 'Navn', |
|||
password: 'Passord', |
|||
signIn: 'Logg Inn', |
|||
logout: 'Logg Ut', |
|||
updateAvailable: 'En ny oppdatering er tilgjengelig!', |
|||
update: 'Oppdater', |
|||
clients: 'Klienter', |
|||
new: 'Ny', |
|||
deleteClient: 'Slett Klient', |
|||
deleteDialog1: 'Er du sikker på at du vil slette?', |
|||
deleteDialog2: 'Denne handlingen kan ikke angres', |
|||
cancel: 'Avbryt', |
|||
create: 'Opprett', |
|||
createdOn: 'Opprettet ', |
|||
lastSeen: 'Sist sett ', |
|||
totalDownload: 'Total Nedlasting: ', |
|||
totalUpload: 'Total Opplasting: ', |
|||
newClient: 'Ny Klient', |
|||
disableClient: 'Deaktiver Klient', |
|||
enableClient: 'Aktiver Klient', |
|||
noClients: 'Ingen klienter opprettet enda.', |
|||
showQR: 'Vis QR Kode', |
|||
downloadConfig: 'Last Ned Konfigurasjon', |
|||
madeBy: 'Laget av', |
|||
donate: 'Doner', |
|||
}, |
|||
pl: { // github.com/archont94
|
|||
name: 'Nazwa', |
|||
password: 'Hasło', |
|||
signIn: 'Zaloguj się', |
|||
logout: 'Wyloguj się', |
|||
updateAvailable: 'Dostępna aktualizacja!', |
|||
update: 'Aktualizuj', |
|||
clients: 'Klienci', |
|||
new: 'Stwórz klienta', |
|||
deleteClient: 'Usuń klienta', |
|||
deleteDialog1: 'Jesteś pewny że chcesz usunąć', |
|||
deleteDialog2: 'Tej akcji nie da się cofnąć.', |
|||
cancel: 'Anuluj', |
|||
create: 'Stwórz', |
|||
createdOn: 'Utworzono ', |
|||
lastSeen: 'Ostatnio widziany ', |
|||
totalDownload: 'Całkowite pobieranie: ', |
|||
totalUpload: 'Całkowite wysyłanie: ', |
|||
newClient: 'Nowy klient', |
|||
disableClient: 'Wyłączenie klienta', |
|||
enableClient: 'Włączenie klienta', |
|||
noClients: 'Nie ma jeszcze klientów.', |
|||
showQR: 'Pokaż kod QR', |
|||
downloadConfig: 'Pobierz konfigurację', |
|||
madeBy: 'Stworzone przez', |
|||
donate: 'Wsparcie autora', |
|||
}, |
|||
fr: { // github.com/clem3109
|
|||
name: 'Nom', |
|||
password: 'Mot de passe', |
|||
signIn: 'Se Connecter', |
|||
logout: 'Se déconnecter', |
|||
updateAvailable: 'Une mise à jour est disponible !', |
|||
update: 'Mise à jour', |
|||
clients: 'Clients', |
|||
new: 'Nouveau', |
|||
deleteClient: 'Supprimer ce client', |
|||
deleteDialog1: 'Êtes-vous que vous voulez supprimer', |
|||
deleteDialog2: 'Cette action ne peut pas être annulée.', |
|||
cancel: 'Annuler', |
|||
create: 'Créer', |
|||
createdOn: 'Créé le ', |
|||
lastSeen: 'Dernière connexion le ', |
|||
totalDownload: 'Téléchargement total : ', |
|||
totalUpload: 'Téléversement total : ', |
|||
newClient: 'Nouveau client', |
|||
disableClient: 'Désactiver ce client', |
|||
enableClient: 'Activer ce client', |
|||
noClients: 'Aucun client pour le moment.', |
|||
showQR: 'Afficher le code à réponse rapide (QR Code)', |
|||
downloadConfig: 'Télécharger la configuration', |
|||
madeBy: 'Développé par', |
|||
donate: 'Soutenir', |
|||
}, |
|||
de: { // github.com/florian-asche
|
|||
name: 'Name', |
|||
password: 'Passwort', |
|||
signIn: 'Anmelden', |
|||
logout: 'Abmelden', |
|||
updateAvailable: 'Eine Aktualisierung steht zur Verfügung!', |
|||
update: 'Aktualisieren', |
|||
clients: 'Clients', |
|||
new: 'Neu', |
|||
deleteClient: 'Client löschen', |
|||
deleteDialog1: 'Möchtest du wirklich löschen?', |
|||
deleteDialog2: 'Diese Aktion kann nicht rückgängig gemacht werden.', |
|||
cancel: 'Abbrechen', |
|||
create: 'Erstellen', |
|||
createdOn: 'Erstellt am ', |
|||
lastSeen: 'Zuletzt Online ', |
|||
totalDownload: 'Gesamt Download: ', |
|||
totalUpload: 'Gesamt Upload: ', |
|||
newClient: 'Neuer Client', |
|||
disableClient: 'Client deaktivieren', |
|||
enableClient: 'Client aktivieren', |
|||
noClients: 'Es wurden noch keine Clients konfiguriert.', |
|||
showQR: 'Zeige den QR Code', |
|||
downloadConfig: 'Konfiguration herunterladen', |
|||
madeBy: 'Erstellt von', |
|||
donate: 'Spenden', |
|||
}, |
|||
ca: { // github.com/guillembonet
|
|||
name: 'Nom', |
|||
password: 'Contrasenya', |
|||
signIn: 'Iniciar sessió', |
|||
logout: 'Tanca sessió', |
|||
updateAvailable: 'Hi ha una actualització disponible!', |
|||
update: 'Actualitza', |
|||
clients: 'Clients', |
|||
new: 'Nou', |
|||
deleteClient: 'Esborra client', |
|||
deleteDialog1: 'Estàs segur que vols esborrar aquest client?', |
|||
deleteDialog2: 'Aquesta acció no es pot desfer.', |
|||
cancel: 'Cancel·la', |
|||
create: 'Crea', |
|||
createdOn: 'Creat el ', |
|||
lastSeen: 'Última connexió el ', |
|||
totalDownload: 'Baixada total: ', |
|||
totalUpload: 'Pujada total: ', |
|||
newClient: 'Nou client', |
|||
disableClient: 'Desactiva client', |
|||
enableClient: 'Activa client', |
|||
noClients: 'Encara no hi ha cap client.', |
|||
showQR: 'Mostra codi QR', |
|||
downloadConfig: 'Descarrega configuració', |
|||
madeBy: 'Fet per', |
|||
donate: 'Donatiu', |
|||
}, |
|||
es: { // github.com/amarqz
|
|||
name: 'Nombre', |
|||
password: 'Contraseña', |
|||
signIn: 'Iniciar sesión', |
|||
logout: 'Cerrar sesión', |
|||
updateAvailable: '¡Hay una actualización disponible!', |
|||
update: 'Actualizar', |
|||
clients: 'Clientes', |
|||
new: 'Nuevo', |
|||
deleteClient: 'Eliminar cliente', |
|||
deleteDialog1: '¿Estás seguro de que quieres borrar este cliente?', |
|||
deleteDialog2: 'Esta acción no podrá ser revertida.', |
|||
cancel: 'Cancelar', |
|||
create: 'Crear', |
|||
createdOn: 'Creado el ', |
|||
lastSeen: 'Última conexión el ', |
|||
totalDownload: 'Total descargado: ', |
|||
totalUpload: 'Total subido: ', |
|||
newClient: 'Nuevo cliente', |
|||
disableClient: 'Desactivar cliente', |
|||
enableClient: 'Activar cliente', |
|||
noClients: 'Aún no hay ningún cliente.', |
|||
showQR: 'Mostrar código QR', |
|||
downloadConfig: 'Descargar configuración', |
|||
madeBy: 'Hecho por', |
|||
donate: 'Donar', |
|||
}, |
|||
ko: { |
|||
name: '이름', |
|||
password: '암호', |
|||
signIn: '로그안', |
|||
logout: '로그아웃', |
|||
updateAvailable: '업데이트가 있습니다!', |
|||
update: '업데이트', |
|||
clients: '클라이언트', |
|||
new: '추가', |
|||
deleteClient: '클라이언트 삭제', |
|||
deleteDialog1: '삭제 하시겠습니까?', |
|||
deleteDialog2: '이 작업은 취소할 수 없습니다.', |
|||
cancel: '취소', |
|||
create: '생성', |
|||
createdOn: '생성일: ', |
|||
lastSeen: '마지막 사용 날짜: ', |
|||
totalDownload: '총 다운로드: ', |
|||
totalUpload: '총 업로드: ', |
|||
newClient: '새로운 클라이언트', |
|||
disableClient: '클라이언트 비활성화', |
|||
enableClient: '클라이언트 활성화', |
|||
noClients: '아직 클라이언트가 없습니다.', |
|||
showQR: 'QR 코드 표시', |
|||
downloadConfig: '구성 다운로드', |
|||
madeBy: '만든 사람', |
|||
donate: '기부', |
|||
}, |
|||
}; |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@ |
|||
!function(t,e){"object"==typeof module&&module.exports?module.exports=e(t):t.timeago=e(t)}("undefined"!=typeof window?window:this,function(){function t(t){return t instanceof Date?t:isNaN(t)?/^\d+$/.test(t)?new Date(e(t,10)):(t=(t||"").trim().replace(/\.\d+/,"").replace(/-/,"/").replace(/-/,"/").replace(/T/," ").replace(/Z/," UTC").replace(/([\+\-]\d\d)\:?(\d\d)/," $1$2"),new Date(t)):new Date(e(t))}function e(t){return parseInt(t)}function n(t,n,r){n=d[n]?n:d[r]?r:"en";var i=0;for(agoin=t<0?1:0,t=Math.abs(t);t>=l[i]&&i<p;i++)t/=l[i];return t=e(t),i*=2,t>(0===i?9:1)&&(i+=1),d[n](t,i)[agoin].replace("%s",t)}function r(e,n){return n=n?t(n):new Date,(n-t(e))/1e3}function i(t){for(var e=1,n=0,r=Math.abs(t);t>=l[n]&&n<p;n++)t/=l[n],e*=l[n];return r%=e,r=r?e-r:e,Math.ceil(r)}function o(t){return t.getAttribute?t.getAttribute(h):t.attr?t.attr(h):void 0}function a(t,e){function a(o,c,f,s){var d=r(c,t);o.innerHTML=n(d,f,e),u["k"+s]=setTimeout(function(){a(o,c,f,s)},1e3*i(d))}var u={};return e||(e="en"),this.format=function(i,o){return n(r(i,t),o,e)},this.render=function(t,e){void 0===t.length&&(t=[t]);for(var n=0;n<t.length;n++)a(t[n],o(t[n]),e,++c)},this.cancel=function(){for(var t in u)clearTimeout(u[t]);u={}},this.setLocale=function(t){e=t},this}function u(t,e){return new a(t,e)}var c=0,f="second_minute_hour_day_week_month_year".split("_"),s="秒_分钟_小时_天_周_月_年".split("_"),d={en:function(t,e){if(0===e)return["just now","right now"];var n=f[parseInt(e/2)];return t>1&&(n+="s"),[t+" "+n+" ago","in "+t+" "+n]},zh_CN:function(t,e){if(0===e)return["刚刚","片刻后"];var n=s[parseInt(e/2)];return[t+n+"前",t+n+"后"]}},l=[60,60,24,7,365/7/12,12],p=6,h="datetime";return u.register=function(t,e){d[t]=e},u}); |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,22 @@ |
|||
[Unit] |
|||
Description=Wireguard VPN + + Web-based Admin UI |
|||
After=network-online.target nss-lookup.target |
|||
|
|||
[Service] |
|||
Environment="WG_HOST=raspberrypi.local" # Change this to your host's public address or static public ip. |
|||
Environment="PASSWORD=REPLACEME" # When set, requires a password when logging in to the Web UI, to disable add a hashtag |
|||
#Environment="WG_DEFAULT_ADDRESS=10.0.8.x" #Clients IP address range. |
|||
#Environment="WG_DEFAULT_DNS=10.0.8.1, 1.1.1.1" #DNS server clients will use. If set to blank value, clients will not use any DNS. |
|||
#Environment="WG_ALLOWED_IPS=0.0.0.0/0,::/0" #Allowed IPs clients will use. |
|||
#Environment="WG_DEVICE=ens1" #Ethernet device the wireguard traffic should be forwarded through. |
|||
#Environment="PORT=80" #TCP port for Web UI. Default : 51821 |
|||
#Environment="WG_MTU=1420" #The MTU the clients will use. Server uses default WG MTU |
|||
#Environment="WG_PERSISTENT_KEEPALIVE=25" #Value in seconds to keep the "connection" open. If this value is 0, then connections won't be kept alive. |
|||
Type=simple |
|||
RemainAfterExit=no |
|||
ExecStart=/usr/bin/env node /app/server.js |
|||
Restart=on-failure |
|||
RestartSec=1 |
|||
|
|||
[Install] |
|||
WantedBy=multi-user.target |
Loading…
Reference in new issue