Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 64 You must be signed in to star a gist
  • Fork 16 You must be signed in to fork a gist
  • Save natchiketa/987524a561e892924e81 to your computer and use it in GitHub Desktop.
Save natchiketa/987524a561e892924e81 to your computer and use it in GitHub Desktop.
Super-simple Nginx reverse proxy with Homebrew on OS X

Installation

1)

brew install nginx
sudo cp /usr/local/Cellar/nginx/1.8.0/homebrew.mxcl.nginx.plist /Library/LaunchAgents

2)

Replace /usr/local/etc/nginx/nginx.conf with the nginx.conf in this gist. I'm using port 5000 for my current project. Obviously, change server_name as well, and probably the name of its access log.

3)

sudo launchctl load /Library/LaunchAgents/homebrew.mxcl.nginx.plist

# Replace /usr/local/etc/nginx/nginx.conf with this. This is the
# default location for Nginx according to 'nginx -h'
worker_processes 1;
error_log /usr/local/var/log/nginx/error.log;
events {
worker_connections 1024;
}
http {
# This should be in the same directory as this conf
# e.g. /usr/local/etc/nginx
include mime.types;
default_type application/octet-stream;
# Note this log_format is named 'main', and is used with the access log below
log_format main '$remote_addr - $remote_user [$time_local] $status '
'"$request" $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
sendfile on;
keepalive_timeout 65;
# Without this I got this error: 'upstream sent too big header
# while reading response header from upstream'
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
server {
listen 80;
server_name dev.copypastafarianism.org;
access_log /usr/local/var/log/nginx/copypastafarianism.access.log main;
location / {
proxy_pass http://0.0.0.0:5000;
}
}
}
@pcmac77
Copy link

pcmac77 commented Jan 27, 2018

@lan3jur, do you have anything running at localhost:5000? That proxy_pass is where nginx will proxy requests for http://localhost:80 to. As an example, set it to http://www.simplesite.com/, and assuming that you have
127.0.0.1 dev.copypastafarianism.org in your /etc/hosts, when you point your browser to http://dev.copypastafarianism.org, you'll see a page from http://www.simplesite.com/.

@ronvillalon
Copy link

How would the https config look like for this?

@dioncodes
Copy link

You should inclued proxy_set_header Host $host; in your location block to make apache-vhosts work.

@ale180192
Copy link

only work running the server using sudo command, in case it serves to someone.

@ithustle
Copy link

Marvelous!!

@ShayMe21
Copy link

I got cp: /usr/local/Cellar/nginx/1.8.0/homebrew.mxcl.nginx.plist: No such file or directory
While running the second command: sudo cp /usr/local/Cellar/nginx/1.8.0/homebrew.mxcl.nginx.plist /Library/LaunchAgents

Does that need to be updated?

@aheijden
Copy link

@ShayMe21 you can check where your cellar file is by running brew --cellar. In my case, it's /opt/homebrew/Cellar. So swapping that should work!

@bayazidsustami
Copy link

bayazidsustami commented May 18, 2023

i got /Library/LaunchDaemons/homebrew.mxcl.nginx.plist: Path had bad ownership/permissions Load failed: 122: Path had bad ownership/permissions when ran sudo launchctl load /Library/LaunchDaemons/homebrew.mxcl.nginx.plist. what did i miss?

macOs Ventura

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment