Skip to content

Instantly share code, notes, and snippets.

@xboston
Created October 16, 2014 06:40
Show Gist options
  • Save xboston/2a45b2e569a2ffbbc277 to your computer and use it in GitHub Desktop.
Save xboston/2a45b2e569a2ffbbc277 to your computer and use it in GitHub Desktop.
Mailcatcher & Vagrant
# Для проброса интерфейса Mailcatcher из Vagrant к пользователю
#
server {
listen 80;
server_name mailcatcher.loc www.mailcatcher.loc;
location / {
proxy_pass http://127.0.0.1:1080;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment