Skip to content

Instantly share code, notes, and snippets.

terraform {
required_version = ">= 0.13"
required_providers {
google = {
source = "hashicorp/google"
version = ">= 3.39"
}
}
}
@Blufe
Blufe / go.mod
Created December 25, 2018 06:33
クリスマスにAdvent Calendarにプレゼントされた記事を調べる
module github.com/Blufe/scraping_advent_calendar
require github.com/PuerkitoBio/goquery v1.5.0 // indirect
@Blufe
Blufe / nginx
Created December 19, 2016 09:03 — forked from Eric-Guo/nginx
Openresty init.d script
#!/bin/sh
#
# chkconfig: 2345 55 25
# Description: Nginx init.d script, put in /etc/init.d, chmod +x /etc/init.d/nginx
# For Debian, run: update-rc.d -f nginx defaults
# For CentOS, run: chkconfig --add nginx
# if report exist, running update-rc.d -f nginx remove first
#
### BEGIN INIT INFO
# Provides: nginx
@Blufe
Blufe / nginx
Created December 19, 2016 08:55 — forked from vdel26/nginx
Openresty init.d script
#!/bin/sh
#
# chkconfig: 2345 55 25
# Description: Nginx init.d script, put in /etc/init.d, chmod +x /etc/init.d/nginx
# For Debian, run: update-rc.d -f nginx defaults
# For CentOS, run: chkconfig --add nginx
#
### BEGIN INIT INFO
# Provides: nginx
# Required-Start: $all