[release] v0.9.0-unstable8

This commit is contained in:
Yann Stepienik 2023-07-02 15:47:29 +01:00
parent 3c9318aba0
commit 2b488ddb51
3 changed files with 3 additions and 2 deletions

View file

@ -46,7 +46,7 @@ const RestartModal = ({openModal, setOpenModal, config}) => {
<DialogTitle>Refresh Page</DialogTitle> <DialogTitle>Refresh Page</DialogTitle>
<DialogContent> <DialogContent>
<DialogContentText> <DialogContentText>
You need to refresh the page to apply changes. {isNotDomain && 'You are not using a domain names, the server will be offline for a few seconds to remap your docker ports.'} You need to refresh the page because you are using a self-signed certificate, in case you have to accept any new certificates. To avoid it in the future, please use Let's Encrypt. {isNotDomain && 'You are also not using a domain name, the server might go offline for a few seconds to remap your docker ports.'}
</DialogContentText> </DialogContentText>
</DialogContent> </DialogContent>
<DialogActions> <DialogActions>

View file

@ -1,6 +1,6 @@
{ {
"name": "cosmos-server", "name": "cosmos-server",
"version": "0.9.0-unstable7", "version": "0.9.0-unstable8",
"description": "", "description": "",
"main": "test-server.js", "main": "test-server.js",
"bugs": { "bugs": {

View file

@ -413,6 +413,7 @@ func StartServer() {
} }
func RestartServer() { func RestartServer() {
utils.LetsEncryptErrors = []string{}
utils.Log("Restarting HTTP Server...") utils.Log("Restarting HTTP Server...")
LoadConfig() LoadConfig()