Skip to content

Instantly share code, notes, and snippets.

View YounesNAJA's full-sized avatar

Younes NAJA YounesNAJA

  • France
View GitHub Profile
@YounesNAJA
YounesNAJA / Install Oh-My-Zsh.sh
Last active January 9, 2026 16:09
Installing my customized iTerm2 + Oh-My-Zsh on macOS
/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)"
@YounesNAJA
YounesNAJA / jenkins_8080_proxypass
Created April 21, 2018 19:40
Nginx Reverse Proxy for Jenkins
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;
}
}