Skip to content

Instantly share code, notes, and snippets.

View deviddev's full-sized avatar

David Molnar deviddev

View GitHub Profile
@rummykhan
rummykhan / nginx.conf
Created April 24, 2021 21:11
Nginx + Supervisor conf for Octane
server {
listen 80;
server_name app.rehanmanzoor.me;
charset utf-8;
client_max_body_size 1M;
location / {
proxy_pass http://127.0.0.1:8001;
proxy_http_version 1.1;