#!/bin/sh mkdir -p /security if [ ! -f /security/server.key ]; then echo "No SSL key found. generating new key and certificate" openssl req \ -new \ -newkey rsa:2048 \ -days 365 \ -nodes\ -x509 \ -subj "/CN=localhost" \ -keyout /security/server.key \ -out /security/server.crt fi nohup nginx & /opt/factorio-server/factorio-server-manager -dir '/opt/factorio' -conf '/opt/factorio-server/conf.json'