Skip to content

Docker image for nginx 1.13 with openssl 1.1.0e and http2 module support

License

Notifications You must be signed in to change notification settings

kgersen/docker-nginx-http2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

nginx-http2-alpn

copied from: https://hub.docker.com/r/ehekatl/docker-nginx-http2/ and changed ehekatl/docker-nginx-http2 to kgersen/nginx-http2-alpn to use this image.

Docker image for nginx 1.13 with openssl 1.1.0e and http2 module support

What's inside

  • Nginx 1.13 build from source (works exactly like official nginx image)
  • Openssl 1.1.0e build from source and pre-installed
  • Nginx http_v2_module
  • Nginx http_stub_status_module
  • Nginx http_realip_module

Configure arguments shows below:

./configure \
    --prefix=/usr/local/nginx \
    --sbin-path=/usr/sbin/nginx \
    --conf-path=/etc/nginx/nginx.conf \
    --pid-path=/var/run/nginx.pid \
    --error-log-path=/var/log/nginx/error.log \
    --http-log-path=/var/log/nginx/access.log \
    --with-http_ssl_module \
    --with-http_v2_module \
    --with-openssl=/usr \
    --with-http_realip_module \
    --with-http_stub_status_module \
    --with-threads \
    --with-ipv6 \

Default Path

  • Nginx conf: /etc/nginx/nginx.conf
  • Pid file: /var/run/nginx.pid
  • Bin path: /usr/sbin/nginx
  • Access log: /var/log/nginx/access.log
  • Error log: /var/log/nginx/error.log

How to use this image

$ docker run --name some-nginx -v /some/content:/usr/share/nginx/html:ro -d kgersen/nginx-http2-alpn Alternatively, a simple Dockerfile can be used to generate a new image that includes the necessary content (which is a much cleaner solution than the bind mount above):

FROM kgersen/nginx-http2-alpn
COPY static-html-directory /usr/share/nginx/html

Place this file in the same directory as your directory of content ("static-html-directory"), run docker build -t some-content-nginx ., then start your container:

$ docker run --name some-nginx -d some-content-nginx exposing the port $ docker run --name some-nginx -d -p 8080:80 some-content-nginx Then you can hit http://localhost:8080 or http://host-ip:8080 in your browser.

Complex configuration

$ docker run --name some-nginx -v /some/nginx.conf:/etc/nginx/nginx.conf:ro -d kgersen/nginx-http2-alpn For information on the syntax of the Nginx configuration files, see the official documentation (specifically the Beginner's Guide).

Be sure to include daemon off; in your custom configuration to ensure that Nginx stays in the foreground so that Docker can track the process properly (otherwise your container will stop immediately after starting)!

If you wish to adapt the default configuration, use something like the following to copy it from a running Nginx container:

$ docker cp some-nginx:/etc/nginx/nginx.conf /some/nginx.conf As above, this can also be accomplished more cleanly using a simple Dockerfile:

FROM kgersen/nginx-http2-alpn
COPY nginx.conf /etc/nginx/nginx.conf

Then, build with docker build -t some-custom-nginx . and run:

$ docker run --name some-nginx -d some-custom-nginx

About

Docker image for nginx 1.13 with openssl 1.1.0e and http2 module support

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published