Private Creator Network
Yura Network
Build on your own machine. Publish with private reachability. Access the .yura ecosystem only when tunnel-connected. Your stack, your files, your control.
Public website: onboarding + tools. Private website (yuranetwork.yura ): only accessible from active Yura tunnel.
1) One-time login Generate token ID + secret (shown once). Unused expires in 1h.
2) One-click connect Run YuraConnect.ps1 as admin. Installs WireGuard if missing.
3) Enter private web Open http://yuranetwork.yura to confirm you made it inside.
One-Click Windows App (Script)
Download and run as Administrator. It auto-installs WireGuard (if needed), generates token, downloads config, and connects.
Connect one-liner (PowerShell Admin): cd $env:USERPROFILE\Downloads; Set-ExecutionPolicy -Scope Process Bypass -Force; .\YuraConnect.ps1
Disconnect one-liner: cd $env:USERPROFILE\Downloads; Set-ExecutionPolicy -Scope Process Bypass -Force; .\YuraDisconnect.ps1
Need help? See full setup guide .
Generate Connection Login (Advanced / Manual)
Single-use credentials. Used once → removed on disconnect. Unused → removed in 1 hour.
Generate Login
Token ID
Token Secret
Copy both now. Secret is only displayed once.
Download WireGuard Config (.conf)
PowerShell manual connect:
$body = @{ tokenId='YOUR_ID'; tokenSecret='YOUR_SECRET' } | ConvertTo-Json; Invoke-RestMethod -Method Post -Uri 'https://yuranetwork.com/api/token/connect' -ContentType 'application/json' -Body $body
PowerShell manual config download:
$body = @{ tokenId='YOUR_ID'; tokenSecret='YOUR_SECRET' } | ConvertTo-Json; Invoke-WebRequest -Method Post -Uri 'https://yuranetwork.com/api/token/wg-config' -ContentType 'application/json' -Body $body -OutFile .\yura.conf
Disconnect API call:
$body = @{ tokenId='YOUR_ID' } | ConvertTo-Json; Invoke-RestMethod -Method Post -Uri 'https://yuranetwork.com/api/token/disconnect' -ContentType 'application/json' -Body $body
Website Publisher Kit (New)
After you connect once, you receive a permanent Publisher ID + Key . These are yours forever and used to create unlimited websites.
Get kit via API (PowerShell):
$body = @{ publisherId='YOUR_PUBLISHER_ID'; publisherKey='YOUR_PUBLISHER_KEY'; desiredDomain='my-site' } | ConvertTo-Json; Invoke-WebRequest -Method Post -Uri 'https://yuranetwork.com/api/sitekit/create' -ContentType 'application/json' -Body $body -OutFile .\yura-site-kit.zip
No duplicate domain names. If taken, use another or generated domain.
Current System Rules
Connection token is single-use.
Unused token expires after 1 hour.
Used token is deleted after disconnect.
Publisher keys are permanent and do not expire.
yuranetwork.yura and all *.yura are restricted to tunnel subnet only.
© Yura Network — private by design.