-
現代 IT 人一定要知道的 Ansible 自動化組態技巧
-
關於凍仁翔
- 4 年以上 IT 經驗。
- 現職 DrSays IT 工程師。
- Ansible 實戰講堂 4e. 學員。
- 於 Ansible Galaxy 分享 Roles:
- php7 (php-fpm)
Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.
Translations: (No guarantee that the translations are up-to-date)
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
=begin | |
ModernIE VMs | |
config.vm.box = "modernIE/vista-ie7" | |
config.vm.box = "modernIE/w7-ie8" | |
config.vm.box = "modernIE/w7-ie9" | |
config.vm.box = "modernIE/w7-ie10" |
#!/bin/bash | |
# ============================================================ | |
# Author: 凍仁翔 / chusiang.lai (at) gmail.com | |
# Blog: http://note.drx.tw | |
# Filename: create-swapfile.sh | |
# Modified: 2015-04-22 09:50 | |
# Description: Enable swap with swapfile for Linux. | |
# Reference: | |
# 1. Linux Add a Swap File | nixCraft | |
# - http://www.cyberciti.biz/faq/linux-add-a-swap-file-howto/ |
現在 github 有提出一系列對學生的優惠服務 詳情請點這裡
只要你是學生(擁有內含edu的信箱 ex:[email protected])
如果你是學生又是黑客的話,就讓我們來申請吧!
/* | |
* Qualys test program to check for presence of GHOST vulnerability | |
* For more info: http://www.openwall.com/lists/oss-security/2015/01/27/9 | |
*/ | |
#include <netdb.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <errno.h> |
/home/laravel/app/storage/logs/laravel.log { | |
daily | |
missingok | |
rotate 7 | |
maxage 7 | |
compress | |
notifempty | |
create 755 user group | |
su user group | |
} |
#!/bin/bash | |
IPT="/sbin/iptables" | |
# Server IP | |
SERVER_IP="$(ip addr show eth0 | grep 'inet ' | cut -f2 | awk '{ print $2}')" | |
# Your DNS servers you use: cat /etc/resolv.conf | |
DNS_SERVER="8.8.4.4 8.8.8.8" | |
# Allow connections to this package servers |