104 Search results

For the term "評判のMicrosoft AZ-104日本語認定試験の問題集 🐫 “ www.goshiken.com ”を開いて➤ AZ-104日本語 ⮘を検索し、試験資料を無料でダウンロードしてくださいAZ-104日本語日本語対策問題集".

Day 15: Sugar Bowl

…r spending almost 2 weeks in the mountains and a weekend with a full house coming up, Andy and I decided it would probably be best to head home as well. Chico and Andy stayed home to finish up some work, and Scott and I headed to Sugar Bowl since they got plastered in the storm, and it is 45 mins closer to the city than Carnelian Bay. Che was meeting up with us, so I grabbed his gear and was going to leave the keys for him at guest services. While…

Dynamically Update /etc/hosts from NGINX

I wanted to guarantee that requests coming from one of my servers going to a domain they host are routed to localhost. The solution I arrived at was to generate a list of domains hosted under NGINX virtual hosts and dynamically updates /etc/hosts, so go do this I wrote a bash script. This script can then be called via cron (or other scripts scheduled in cron or otherwise) to concatenate to the actual hosts file. Setup Configuration First we need…

Day 6: Aspen Highlands

…Rockies (world?), so of course we got a shot of Adam peering out at them. The summit was much what you would expect from a summit, complete with Tibetan prayer flags….

Service Process Start, Service Start Process

…at would reverse it for me, and then just linked the script to the various commands I wanted to use service with. #!/bin/sh # description: This reverses the last argument since I screw it up all the time. # processname: service-reverser EXEC=`echo “$0 $1” | sed -e ‘s/\/etc\/init\.d\/\(.*\) \(.*\)/service \2 \1/g’` $EXEC Next make the file executable, and then link it up. chmod +x /usr/local/bin/service-reverser ln -s /usr/local/bin/service-reverse…

Wildcard SSL Certs: Let’s Encrypt & Cloudflare

…for deployment JENKINS_SSL=”/home/jenkins/secrets/ssl” DOMAIN=”your-domain.com” # run this after the certbot renewal to copy keys to jenkins POST_HOOK_PATH=”/usr/local/bin/certbot-post-hook” cat <<CERTBOT_POST_HOOK > “$POST_HOOK_PATH” # copy ssl certs and keys cp /etc/letsencrypt/live/$DOMAIN/fullchain.pem “$JENKINS_SSL/$DOMAIN-fullchain.pem” cp /etc/letsencrypt/live/$DOMAIN/privkey.pem “$JENKINS_SSL/$DOMAIN-privkey.pem” # make sure the jenkins us…

Node.js + PM2 + NGINX + Redis on CentOS 7

…ort src utility if [[ -z $(type -t src) ]]; then source <(curl -sL https://www.doublesharp.com/src) fi src osname src osversion cat <<REPO > /etc/yum.repos.d/nginx.repo [nginx] name=nginx repo # default repo #baseurl=http://nginx.org/packages/$(osname)/$(osversion)/\$basearch/ # mainline “dev” repo for http2 support baseurl=http://nginx.org/packages/mainline/$(osname)/$(osversion)/\$basearch/ gpgcheck=0 enabled=1 REPO #install nginx yum install -y…