This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| # Install iTerm2 | |
| brew install --cask iterm2 | |
| # Install Zsh | |
| brew install zsh | |
| # Install Oh-My-Zsh | |
| sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| server { | |
| listen 80; | |
| server_name localhost; | |
| access_log /var/log/nginx/jenkins _8080_proxypass_access.log; | |
| error_log /var/log/nginx/jenkins_8080_proxypass_access.log; | |
| location / { | |
| proxy_pass http://127.0.0.1:7070/; | |
| include /etc/nginx/proxy.conf; | |
| } | |
| } |