faisitalia / OpenMed-PoC

PoC Version - The project stems from the experience of FAIS gained in Smart Ostomy Support with the aim of creating a platform that technologically supports the patient associations participating in the project.
1 stars 5 forks source link

Install OpenMED in DEV enviroment #48

Open niclaus76 opened 2 years ago

niclaus76 commented 2 years ago

Use the https://openmed.cloud/ domain Install on AWS Cloud on the dedicated DEV VM.

Here's a draft of the openmed.json configuration file:

{
    "publicHostname": "dev.ambulatorio.openmed.cloud",
    "publicPort": 443,
    "publicIp": "<this-VM-public-ip>",
    "mongodbUrl": "mongodb://<mongohost>:<your-mongo-password>@<your-mongo-host-name>:27017/<your-mongo-database-name>",
    "mailConfig": {
        "provider": "ergonet",
        "smtp": "smtp.ergonet.it",
        "port": "465",
        "username": "visite@openmed.cloud",
        "password": "<obscured-password>"
    },
    "sslCert": "/etc/letsencrypt/live/<your-host-name>/fullchain.pem",
    "sslKey": "/etc/letsencrypt/live/<your-hostname-name>/privkey.pem"
}

The AWS DEV VM is up already, we just need to configure it.

lucavenir commented 2 years ago

Updated