{"id":13929308,"url":"https://github.com/meshify-app/meshify","last_synced_at":"2026-04-13T11:00:33.894Z","repository":{"id":44440007,"uuid":"301017258","full_name":"meshify-app/meshify","owner":"meshify-app","description":"Meshify Repository","archived":false,"fork":false,"pushed_at":"2022-12-24T16:01:51.000Z","size":35972,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-19T14:23:39.667Z","etag":null,"topics":["vpn","wireguard"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/meshify-app.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-10-04T01:27:43.000Z","updated_at":"2022-09-15T12:23:10.000Z","dependencies_parsed_at":"2023-01-30T21:00:48.172Z","dependency_job_id":null,"html_url":"https://github.com/meshify-app/meshify","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/meshify-app/meshify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshify-app%2Fmeshify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshify-app%2Fmeshify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshify-app%2Fmeshify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshify-app%2Fmeshify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meshify-app","download_url":"https://codeload.github.com/meshify-app/meshify/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshify-app%2Fmeshify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31749763,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T09:16:15.125Z","status":"ssl_error","status_checked_at":"2026-04-13T09:16:05.023Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["vpn","wireguard"],"created_at":"2024-08-07T18:02:15.059Z","updated_at":"2026-04-13T11:00:33.878Z","avatar_url":"https://github.com/meshify-app.png","language":"Go","funding_links":[],"categories":["others"],"sub_categories":[],"readme":"# Meshify\n\n\u003ch1\u003e\u003cimg src=\"./ui/src/assets/meshify.png\" alt=\"A WireGuard control plane\"\u003e\u003c/h1\u003e\n\nA control plane for [WireGuard](https://wireguard.com).\n\n## Requirements\n\n* OIDC compliant OAuth2 implementation\n* MongoDB\n* Mail Server credentials for sending outgoing email\n* golang\n* nginx\n* NodeJS / Vue 2\n\n![Screenshot](meshify-architecture.png)\n\n## Features\n\n * Self-hosted and web based management of wireguard networks\n * Mesh define the configuration of the hosts in the network\n * Invite people to network with email\n * Authenticate them with OAuth2\n * Generation of configuration files on demand\n * User authentication (Oauth2 OIDC)\n * Fully configure all aspects of your VPN\n * Manage hosts remotely\n * Simple\n * Lightweight\n * Secure\n\n\n\n![Screenshot](meshify-screenshot.png)\n\n## Running\n\n\n### Directly\n\nInstall dependencies\n\nSample NGINX Config:\n\n```\nserver {\n\n        server_name meshifyvpn.com;\n\n        root /usr/share/meshify/ui/dist; index index.html; location / {\n            try_files $uri $uri/ /index.html;\n       }\n\n    location /api/ {\n        # app2 reverse proxy settings follow\n        proxy_set_header X-Real-IP $remote_addr;\n        proxy_set_header Host localhost;\n        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n        proxy_pass http://127.0.0.1:8080;\n    }\n\n\n    listen 443 ssl; # managed by Certbot\n    ssl_certificate /etc/letsencrypt/live/meshifyvpn.com/fullchain.pem; # managed by Certbot\n    ssl_certificate_key /etc/letsencrypt/live/meshifyvpn.com/privkey.pem; # managed by Certbot\n    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot\n    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot\n\n}\nserver {\n    if ($host = meshifyvpn.com) {\n        return 301 https://$host$request_uri;\n    } # managed by Certbot\n\n\n\n        server_name meshifyvpn.com;\n    listen 80;\n    return 404; # managed by Certbot\n\n\n}\n```\n\nExample `.env` file:\n\n```\n# IP address to listen to\nSERVER=0.0.0.0\n# port to bind\nPORT=8080\n# Gin framework release mode\nGIN_MODE=release\n\n# SMTP settings to send email to clients\nSMTP_HOST=smtp.sendgrid.net\nSMTP_PORT=587\nSMTP_USERNAME=apikey\nSMTP_PASSWORD=\nSMTP_FROM=Meshify \u003cinfo@meshifyvpn.com\u003e\n\n# MONGO settings\nMONGODB_CONNECTION_STRING=mongodb://127.0.0.1:27017\n\n# example with google\n#OAUTH2_PROVIDER_NAME=google\n#OAUTH2_PROVIDER=\n#OAUTH2_CLIENT_ID=\n#OAUTH2_CLIENT_SECRET=\n#OAUTH2_REDIRECT_URL=\n\n# example with github\n#OAUTH2_PROVIDER_NAME=github\n#OAUTH2_PROVIDER=https://github.com\n#OAUTH2_CLIENT_ID=\n#OAUTH2_CLIENT_SECRET=\n#OAUTH2_REDIRECT_URL=\n\n#OAUTH2_PROVIDER_NAME=oauth2oidc\n#OAUTH2_PROVIDER=https://auth.meshifyvpn.com/\n#OAUTH2_PROVIDER_URL=meshifyvpn.us.auth0.com\n#OAUTH2_CLIENT_ID=\n#OAUTH2_CLIENT_ID_WINDOWS=\n#OAUTH2_CLIENT_SECRET=\n#OAUTH2_REDIRECT_URL=https://dev.meshifyvpn.com\n\nOAUTH2_PROVIDER_NAME=microsoft\nOAUTH2_PROVIDER=https://login.microsoftonline.com/.../v2.0\nOAUTH2_CLIENT_ID=\nOAUTH2_CLIENT_ID_WINDOWS=\nOAUTH2_CLIENT_SECRET=\nOAUTH2_REDIRECT_URL=https://meshifyvpn.com\nOAUTH2_TENET=...\n\n# set provider name to fake to disable auth, also the default\nOAUTH2_PROVIDER_NAME=microsoft\n```\n\nCreate a systemd service for the API:\n\n```\ncat  /lib/systemd/system/meshify-api.service\n[Unit]\nDescription=Meshify API\nConditionPathExists=/usr/share/meshify/cmd/meshify\nAfter=network.target\n\n[Service]\nType=simple\nUser=root\nGroup=root\nLimitNOFILE=1024000\n\nRestart=on-failure\nRestartSec=10\n#startLimitIntervalSec=60\n\nWorkingDirectory=/usr/share/meshify/\nExecStart=/usr/share/meshify/cmd/meshify/meshify\n\n# make sure log directory exists and owned by syslog\nPermissionsStartOnly=true\nExecStartPre=/bin/mkdir -p /var/log/meshify\nExecStartPre=/bin/chown syslog:adm /var/log/meshify\nExecStartPre=/bin/chmod 755 /var/log/meshify\nStandardOutput=syslog\nStandardError=syslog\nSyslogIdentifier=meshify\n\n[Install]\nWantedBy=multi-user.target\n```\n\nBuild the API\n```\ncd /usr/share/meshify/cmd/meshify\ngo build\n```\n\nEnable the service:\n\n```\nsudo systemctl enable meshify-api\nsudo systemctl start meshify-api\n```\n\nInstall NodeJS using NVM\n```\nnvm use lts-latest\n```\n\nBuild the frontend\n\n```\ncd ui\nnpm install\nnpm run build\n```\n\nWith the given nginx config, you should now be able to use your website.  Don't forget\nto get a cert using certbot\n\n## Need Help\n\nmailto:support@meshify.app\n\n## License\n* Released under MIT License\n\nWireGuard® is a registered trademark of Jason A. Donenfeld.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeshify-app%2Fmeshify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeshify-app%2Fmeshify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeshify-app%2Fmeshify/lists"}