~benaiah/fennel-openresty

e834a5706a0b16670675b260d97676d5da8d2a67 — Benaiah Mischenko 5 years ago cec36a2
Prep for docker
2 files changed, 10 insertions(+), 1 deletions(-)

A Dockerfile
M conf/nginx.conf
A Dockerfile => Dockerfile +9 -0
@@ 0,0 1,9 @@
FROM openresty/openresty:stretch

LABEL maintainer="Benaiah Mischenko <benaiah@mischenko.com>"

WORKDIR /app

COPY . /app

EXPOSE 80
\ No newline at end of file

M conf/nginx.conf => conf/nginx.conf +1 -1
@@ 6,7 6,7 @@ events {
http {
    include /usr/local/openresty/nginx/conf/mime.types;
    server {
        listen 8090;
        listen 80;
        location / {
            default_type text/html;
            content_by_lua_file server/server.lua;