[release] v0.10.0-unstable4

This commit is contained in:
Yann Stepienik 2023-08-27 10:47:54 +01:00
parent bb11cbbe96
commit 486291871e
4 changed files with 20 additions and 5 deletions

View file

@ -1,6 +1,6 @@
{
"name": "cosmos-server",
"version": "0.10.0-unstable3",
"version": "0.10.0-unstable4",
"description": "",
"main": "test-server.js",
"bugs": {

View file

@ -7,7 +7,6 @@
<p align="center"><a href="https://github.com/DrMxrcy"><img src="https://avatars.githubusercontent.com/DrMxrcy" style="border-radius:48px" width="48" height="48" alt="null" title="null" /></a>
<a href="https://github.com/soldier1"><img src="https://avatars.githubusercontent.com/soldier1" style="border-radius:48px" width="48" height="48" alt="null" title="null" /></a>
<a href="https://github.com/devcircus"><img src="https://avatars.githubusercontent.com/devcircus" style="border-radius:48px" width="48" height="48" alt="Clayton Stone" title="Clayton Stone" /></a>
<a href="https://github.com/BillyDas"><img src="https://avatars.githubusercontent.com/BillyDas" style="border-radius:48px" width="48" height="48" alt="Billy Das" title="Billy Das" /></a>
<a href="https://github.com/Serph91P"><img src="https://avatars.githubusercontent.com/Serph91P" style="border-radius:48px" width="48" height="48" alt="Seraph91P" title="Seraph91P" /></a>
</p><!-- /sponsors -->

View file

@ -28,8 +28,12 @@ func Init() {
// export nebula.yml
utils.Log("Constellation: exporting nebula.yml...")
ExportConfigToYAML(utils.GetMainConfig().ConstellationConfig, utils.CONFIGFOLDER + "nebula.yml")
err := ExportConfigToYAML(utils.GetMainConfig().ConstellationConfig, utils.CONFIGFOLDER + "nebula.yml")
if err != nil {
utils.Error("Constellation: error while exporting nebula.yml", err)
}
// start nebula
utils.Log("Constellation: starting nebula...")
err := startNebulaInBackground()

View file

@ -88,8 +88,20 @@ func InitConfig() {
UDPTimeout: "3m",
DefaultTimeout: "10m",
},
Outbound: nil,
Inbound: nil,
Outbound: []utils.NebulaFirewallRule {
utils.NebulaFirewallRule {
Host: "any",
Port: "any",
Proto: "any",
},
},
Inbound: []utils.NebulaFirewallRule {
utils.NebulaFirewallRule {
Host: "any",
Port: "any",
Proto: "any",
},
},
},
}
}