Matthijs

Results 105 comments of Matthijs

Ah I just wanted to make a ticket, I have the same issue. However for me it does not matter if it is `cmd` or `ps` (the osascript I found...

Hi @jan-molak thanks for your reply. Yeah it as something to do with the tablets we use. As a quick-and-dirty proof of concept I simply added a "window.location.reload" in our...

Hi @jan-molak, this solution works perfectly for us. About once a day I see the error shortly on the screen and after that it will quickly refresh. I'd be happy...

(For Unraid CA backup you can also uncheck your factorio server so it won't be shut down when backing-up, yes there is a chance a file is written the same...

Why do you want this in FSM? I would opt to leave the app as your app and use a reverse proxy (something like NginxProxyManager or something if you prefer...

I would still opt to not implement SSL here (but hey that's just my opinion). There are other pieces of software that can do a way better job. You will...

Not if you expect that SSL termination is handled by some other service/proxy :) But yeah that's just how I think it should work. Just giving my 2 cents. Self-signed...

Or use something that increase the time between restarts. Docker also uses this: https://docs.docker.com/engine/reference/run/#restart-policies---restart ``` An increasing delay (double the previous delay, starting at 100 milliseconds) is added before each...

Hi, I have a `/opt/fsm-data/conf.json` in the container that contains the following: ``` { "rcon_port": 34198, "rcon_pass": "xx", "sq_lite_database_file": "/opt/fsm-data/sqlite.db", "cookie_encryption_key": "xx+xx=", "settings_file": "server-settings.json", "log_file": "/opt/fsm-data/factorio-server-manager.log", "secure": false } ```...

I also see an env var mentioned (https://github.com/OpenFactorioServerManager/factorio-server-manager/blob/develop/src/bootstrap/config.go#L27) ``` root@f6406466fc9e:/opt# env | grep -i rcon FSM_RCON_PORT=34198 RCON_PASS= root@f6406466fc9e:/opt# ``` But this still seems to use a random port edit: ```...