dhis-ssa-csd-loader
v1.0.1
Published
openinfoman-dhis ---------------- This web application make use of OpenInfoMan and the DHIS2 adapter. You can easily install on Ubuntu 14.04 and 15.10 using the following commands sudo add-apt-repository ppa:openhie/release sudo apt-get update sudo
Downloads
1
Readme
openinfoman-dhis
This web application make use of OpenInfoMan and the DHIS2 adapter. You can easily install on Ubuntu 14.04 and 15.10 using the following commands sudo add-apt-repository ppa:openhie/release sudo apt-get update sudo apt-get install openinfoman-dhis
nginx
This assume nginx (or other transparent proxy) has been installed to redirect https://localhost/ILR requests to a CSD InfoManager
The following can be added to /etc/nginx/sites-available/dhis to accomplish this
#pass on CSD requests to ILR location /ILR { rewrite ^/ILR/(.*) /$1 break; proxy_pass http://localhost:8984; proxy_redirect off; proxy_set_header Host $host; }