Skip to content

Instantly share code, notes, and snippets.

@mrluanma
Last active April 18, 2018 07:15
Show Gist options
  • Select an option

  • Save mrluanma/8415708 to your computer and use it in GitHub Desktop.

Select an option

Save mrluanma/8415708 to your computer and use it in GitHub Desktop.
-- my_app.rockspec
dependencies = {
"https://raw.github.com/leafo/heroku-openresty/master/heroku-openresty-dev-1.rockspec"
}
worker_processes auto;
error_log logs/error.log;
daemon off;
events {
use epoll;
worker_connections 1024;
}
http {
server {
listen ${{PORT}};
location / {
default_type text/html;
content_by_lua '
ngx.say("<p>hello, world</p>")
';
}
}
}
web: start_nginx.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment