mirror of
https://github.com/azukaar/Cosmos-Server.git
synced 2026-01-05 20:05:02 -06:00
v0.1.2 Bug Fixes
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "cosmos-server",
|
||||
"version": "0.1.1",
|
||||
"version": "0.1.2",
|
||||
"description": "",
|
||||
"main": "test-server.js",
|
||||
"bugs": {
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
[](https://discord.gg/PwMWwsrwHA) 
|
||||
|
||||
Cosmos is a self-hosted platform for running server applications securely and with built-in privacy features. It acts as a secure gateway to your application, as well as a server manager. It aims to solve the increasingly worrying problem of vulnerable self-hosted applications and personnal servers.
|
||||
Cosmos is a self-hosted platform for running server applications securely and with built-in privacy features. It acts as a secure gateway to your application, as well as a server manager. It aims to solve the increasingly worrying problem of vulnerable self-hosted applications and personal servers.
|
||||
|
||||

|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ func checkVersion() {
|
||||
|
||||
myVersion := version.Version
|
||||
|
||||
response, err := http.Get("https://comos-technologies.com/versions/" + myVersion)
|
||||
response, err := http.Get("https://cosmos-cloud.io/versions/" + myVersion)
|
||||
if err != nil {
|
||||
utils.Error("checkVersion", err)
|
||||
return
|
||||
|
||||
@@ -95,8 +95,8 @@ func LoadBaseMainConfig(config Config){
|
||||
if os.Getenv("COSMOS_HOSTNAME") != "" {
|
||||
MainConfig.HTTPConfig.Hostname = os.Getenv("COSMOS_HOSTNAME")
|
||||
}
|
||||
if os.Getenv("COSMOS_GENERATE_MISSING_TLS_CERT") != "" {
|
||||
MainConfig.HTTPConfig.HTTPSCertificateMode = os.Getenv("COSMOS_HTTPSCertificateMode")
|
||||
if os.Getenv("COSMOS_HTTPS_MODE") != "" {
|
||||
MainConfig.HTTPConfig.HTTPSCertificateMode = os.Getenv("COSMOS_HTTPS_MODE")
|
||||
}
|
||||
if os.Getenv("COSMOS_GENERATE_MISSING_AUTH_CERT") != "" {
|
||||
MainConfig.HTTPConfig.GenerateMissingAuthCert = os.Getenv("COSMOS_GENERATE_MISSING_AUTH_CERT") == "true"
|
||||
|
||||
Reference in New Issue
Block a user