← Back to team overview

dhis2-users team mailing list archive

Re: Help Required

 

Not trying to confuse people here. But if a reverse proxy is only
what's needed i can recommend using nginx over apache - its
specifically designed to act as one and a lot more light-weight / less
resource intensive than apache. On debian / ubuntu Install with

sudo apt-get install nginx

and then put this into the server block of /usr/local/nginx/conf/nginx.conf

 location / {
            proxy_pass         http://localhost:8085/dhis/;
            proxy_redirect     off;
}

start with

/usr/local/sbin/nginx

and stop with

/usr/local/sbin/nginx -s stop



Lars


Follow ups

References