dynamo/openresty

By dynamo

Updated over 10 years ago

openresty

Image
Networking
0

8.5K

dynamo/openresty repository overview

docker-openresty

Openresty Docker container

Usage

Make a directory for files
mkdir -p /myapp
Create a basic nginx configuration file

Save this to /myapp/conf/nginx.conf

daemon off;  # This is crucial for Docker
worker_processes 1;
error_log logs/error.log;
events {
    worker_connections 1024;
}
http {
    server {
        listen 80;
        location / {
            default_type text/html;
            content_by_lua 'ngx.say("<p>Hey! Love from Lua</p>")';
        }
    }
}

Ensure that the logs directory is created with mkdir /myapp/logs.

Run the docker container!
 docker run --name=openresty -d -v /myapp:/nginx -p 127.0.0.1:80:80 dynamo/openresty

Yay! You now have an openresty server running!

Tag summary

Content type

Image

Digest

sha256:9cd4f36b7

Size

50.5 MB

Last updated

over 10 years ago

docker pull dynamo/openresty