🚚 Rename management APIs
This commit is contained in:
parent
fb24f44e22
commit
8f1ac85148
@ -74,7 +74,7 @@ rds cli with this command.
|
|||||||
```shell
|
```shell
|
||||||
rds connect <id> <url> <password>
|
rds connect <id> <url> <password>
|
||||||
# ID will allow you find this server in after commands.
|
# ID will allow you find this server in after commands.
|
||||||
# URL is to your roadsign server administration api.
|
# URL is to your roadsign server sideload api.
|
||||||
# Password is your roadsign server credential.
|
# Password is your roadsign server credential.
|
||||||
# ======================================================================
|
# ======================================================================
|
||||||
# !WARNING! All these things will storage in your $HOME/.roadsignrc.yaml
|
# !WARNING! All these things will storage in your $HOME/.roadsignrc.yaml
|
||||||
|
@ -7,8 +7,8 @@ import (
|
|||||||
"syscall"
|
"syscall"
|
||||||
|
|
||||||
roadsign "code.smartsheep.studio/goatworks/roadsign/pkg"
|
roadsign "code.smartsheep.studio/goatworks/roadsign/pkg"
|
||||||
"code.smartsheep.studio/goatworks/roadsign/pkg/administration"
|
|
||||||
"code.smartsheep.studio/goatworks/roadsign/pkg/hypertext"
|
"code.smartsheep.studio/goatworks/roadsign/pkg/hypertext"
|
||||||
|
"code.smartsheep.studio/goatworks/roadsign/pkg/sideload"
|
||||||
"code.smartsheep.studio/goatworks/roadsign/pkg/sign"
|
"code.smartsheep.studio/goatworks/roadsign/pkg/sign"
|
||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
"github.com/rs/zerolog"
|
"github.com/rs/zerolog"
|
||||||
@ -65,13 +65,13 @@ func main() {
|
|||||||
viper.GetString("hypertext.certificate.key"),
|
viper.GetString("hypertext.certificate.key"),
|
||||||
)
|
)
|
||||||
|
|
||||||
// Init administration server
|
// Init sideload server
|
||||||
hypertext.RunServer(
|
hypertext.RunServer(
|
||||||
administration.InitAdministration(),
|
sideload.InitSideload(),
|
||||||
viper.GetStringSlice("hypertext.administration_ports"),
|
viper.GetStringSlice("hypertext.sideload_ports"),
|
||||||
viper.GetStringSlice("hypertext.administration_secured_ports"),
|
viper.GetStringSlice("hypertext.sideload_secured_ports"),
|
||||||
viper.GetString("hypertext.certificate.administration_pem"),
|
viper.GetString("hypertext.certificate.sideload_pem"),
|
||||||
viper.GetString("hypertext.certificate.administration_key"),
|
viper.GetString("hypertext.certificate.sideload_key"),
|
||||||
)
|
)
|
||||||
|
|
||||||
log.Info().Msgf("RoadSign v%s is started...", roadsign.AppVersion)
|
log.Info().Msgf("RoadSign v%s is started...", roadsign.AppVersion)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package administration
|
package sideload
|
||||||
|
|
||||||
import (
|
import (
|
||||||
roadsign "code.smartsheep.studio/goatworks/roadsign/pkg"
|
roadsign "code.smartsheep.studio/goatworks/roadsign/pkg"
|
@ -1,4 +1,4 @@
|
|||||||
package administration
|
package sideload
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
@ -1,4 +1,4 @@
|
|||||||
package administration
|
package sideload
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@ -11,21 +11,21 @@ import (
|
|||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
)
|
)
|
||||||
|
|
||||||
func InitAdministration() *fiber.App {
|
func InitSideload() *fiber.App {
|
||||||
app := fiber.New(fiber.Config{
|
app := fiber.New(fiber.Config{
|
||||||
AppName: "RoadSign Administration",
|
AppName: "RoadSign Sideload",
|
||||||
ServerHeader: fmt.Sprintf("RoadSign Administration v%s", roadsign.AppVersion),
|
ServerHeader: fmt.Sprintf("RoadSign Sideload v%s", roadsign.AppVersion),
|
||||||
DisableStartupMessage: true,
|
DisableStartupMessage: true,
|
||||||
EnableIPValidation: true,
|
EnableIPValidation: true,
|
||||||
EnablePrintRoutes: viper.GetBool("debug.print_routes"),
|
EnablePrintRoutes: viper.GetBool("debug.print_routes"),
|
||||||
TrustedProxies: viper.GetStringSlice("security.administration_trusted_proxies"),
|
TrustedProxies: viper.GetStringSlice("security.sideload_trusted_proxies"),
|
||||||
BodyLimit: viper.GetInt("hypertext.limitation.max_body_size"),
|
BodyLimit: viper.GetInt("hypertext.limitation.max_body_size"),
|
||||||
})
|
})
|
||||||
|
|
||||||
if viper.GetBool("performance.request_logging") {
|
if viper.GetBool("performance.request_logging") {
|
||||||
app.Use(logger.New(logger.Config{
|
app.Use(logger.New(logger.Config{
|
||||||
Output: log.Logger,
|
Output: log.Logger,
|
||||||
Format: "[Administration] [${time}] ${status} - ${latency} ${method} ${path}\n",
|
Format: "[Sideload] [${time}] ${status} - ${latency} ${method} ${path}\n",
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
package administration
|
package sideload
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
10
settings.yml
10
settings.yml
@ -1,12 +1,12 @@
|
|||||||
debug:
|
debug:
|
||||||
print_routes: true
|
print_routes: true
|
||||||
hypertext:
|
hypertext:
|
||||||
administration_ports:
|
sideload_ports:
|
||||||
- :81
|
- :81
|
||||||
administration_secured_ports: []
|
sideload_secured_ports: []
|
||||||
certificate:
|
certificate:
|
||||||
administration_key: ./cert.key
|
sideload_key: ./cert.key
|
||||||
administration_pem: ./cert.pem
|
sideload_pem: ./cert.pem
|
||||||
key: ./cert.key
|
key: ./cert.key
|
||||||
pem: ./cert.pem
|
pem: ./cert.pem
|
||||||
limitation:
|
limitation:
|
||||||
@ -22,6 +22,6 @@ performance:
|
|||||||
network_timeout: 3000
|
network_timeout: 3000
|
||||||
prefork: false
|
prefork: false
|
||||||
security:
|
security:
|
||||||
administration_trusted_proxies:
|
sideload_trusted_proxies:
|
||||||
- localhost
|
- localhost
|
||||||
credential: e81f43f32d934271af6322e5376f5f59
|
credential: e81f43f32d934271af6322e5376f5f59
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
debug:
|
debug:
|
||||||
print_routes: false
|
print_routes: false
|
||||||
hypertext:
|
hypertext:
|
||||||
administration_ports: [":81"]
|
sideload_ports: [":81"]
|
||||||
administration_secured_ports: []
|
sideload_secured_ports: []
|
||||||
certificate:
|
certificate:
|
||||||
administration_key: ./cert.key
|
sideload_key: ./cert.key
|
||||||
administration_pem: ./cert.pem
|
sideload_pem: ./cert.pem
|
||||||
key: ./cert.key
|
key: ./cert.key
|
||||||
pem: ./cert.pem
|
pem: ./cert.pem
|
||||||
limitation:
|
limitation:
|
||||||
@ -21,6 +21,6 @@ performance:
|
|||||||
network_timeout: 3000
|
network_timeout: 3000
|
||||||
prefork: false
|
prefork: false
|
||||||
security:
|
security:
|
||||||
administration_trusted_proxies:
|
sideload_trusted_proxies:
|
||||||
- localhost
|
- localhost
|
||||||
credential: e81f43f32d934271af6322e5376f5f59
|
credential: e81f43f32d934271af6322e5376f5f59
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
debug:
|
debug:
|
||||||
print_routes: false
|
print_routes: false
|
||||||
hypertext:
|
hypertext:
|
||||||
administration_ports: [":81"]
|
sideload_ports: [":81"]
|
||||||
administration_secured_ports: []
|
sideload_secured_ports: []
|
||||||
certificate:
|
certificate:
|
||||||
administration_key: ./cert.key
|
sideload_key: ./cert.key
|
||||||
administration_pem: ./cert.pem
|
sideload_pem: ./cert.pem
|
||||||
key: ./cert.key
|
key: ./cert.key
|
||||||
pem: ./cert.pem
|
pem: ./cert.pem
|
||||||
limitation:
|
limitation:
|
||||||
@ -21,6 +21,6 @@ performance:
|
|||||||
network_timeout: 3000
|
network_timeout: 3000
|
||||||
prefork: false
|
prefork: false
|
||||||
security:
|
security:
|
||||||
administration_trusted_proxies:
|
sideload_trusted_proxies:
|
||||||
- localhost
|
- localhost
|
||||||
credential: e81f43f32d934271af6322e5376f5f59
|
credential: e81f43f32d934271af6322e5376f5f59
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
debug:
|
debug:
|
||||||
print_routes: false
|
print_routes: false
|
||||||
hypertext:
|
hypertext:
|
||||||
administration_ports: [":81"]
|
sideload_ports: [":81"]
|
||||||
administration_secured_ports: []
|
sideload_secured_ports: []
|
||||||
certificate:
|
certificate:
|
||||||
administration_key: ./cert.key
|
sideload_key: ./cert.key
|
||||||
administration_pem: ./cert.pem
|
sideload_pem: ./cert.pem
|
||||||
key: ./cert.key
|
key: ./cert.key
|
||||||
pem: ./cert.pem
|
pem: ./cert.pem
|
||||||
limitation:
|
limitation:
|
||||||
@ -21,6 +21,6 @@ performance:
|
|||||||
network_timeout: 3000
|
network_timeout: 3000
|
||||||
prefork: true
|
prefork: true
|
||||||
security:
|
security:
|
||||||
administration_trusted_proxies:
|
sideload_trusted_proxies:
|
||||||
- localhost
|
- localhost
|
||||||
credential: e81f43f32d934271af6322e5376f5f59
|
credential: e81f43f32d934271af6322e5376f5f59
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
debug:
|
debug:
|
||||||
print_routes: false
|
print_routes: false
|
||||||
hypertext:
|
hypertext:
|
||||||
administration_ports: [":81"]
|
sideload_ports: [":81"]
|
||||||
administration_secured_ports: []
|
sideload_secured_ports: []
|
||||||
certificate:
|
certificate:
|
||||||
administration_key: ./cert.key
|
sideload_key: ./cert.key
|
||||||
administration_pem: ./cert.pem
|
sideload_pem: ./cert.pem
|
||||||
key: ./cert.key
|
key: ./cert.key
|
||||||
pem: ./cert.pem
|
pem: ./cert.pem
|
||||||
limitation:
|
limitation:
|
||||||
@ -21,6 +21,6 @@ performance:
|
|||||||
network_timeout: 3000
|
network_timeout: 3000
|
||||||
prefork: false
|
prefork: false
|
||||||
security:
|
security:
|
||||||
administration_trusted_proxies:
|
sideload_trusted_proxies:
|
||||||
- localhost
|
- localhost
|
||||||
credential: e81f43f32d934271af6322e5376f5f59
|
credential: e81f43f32d934271af6322e5376f5f59
|
||||||
|
Loading…
Reference in New Issue
Block a user