FROM bitnami/nginx
LABEL maintainer "Bitnami <containers@bitnami.com>"

## Install 'vim'
USER 0 
## Required to perform privileged actions

## Modify 'worker_connections' on NGINX config file to '512'
##RUN sed -i -r "s#(\s+worker_connections\s+)[0-9]+;#\1512;#" /opt/bitnami/nginx/conf/nginx.conf

## Modify the ports used by NGINX by default
ENV NGINX_HTTP_PORT_NUMBER=80
EXPOSE 80 443

## Modify the default container user

