Ansible Role WEB 之【tengine】

Ansible Role: tengine

安裝tengine

介紹

Tengine是由淘寶網(wǎng)發(fā)起的Web服務(wù)器項(xiàng)目浩淘。它在Nginx的基礎(chǔ)上咳焚,針對大訪問量網(wǎng)站的需求洽损,添加了很多高級功能和特性。Tengine的性能和穩(wěn)定性已經(jīng)在大型的網(wǎng)站如淘寶網(wǎng)革半,天貓商城等得到了很好的檢驗(yàn)碑定。它的最終目標(biāo)是打造一個(gè)高效、穩(wěn)定又官、安全延刘、易用的Web平臺(tái)。

官方網(wǎng)站:http://tengine.taobao.org/
官方文檔地址:http://tengine.taobao.org/documentation.html

要求

此角色僅在RHEL及其衍生產(chǎn)品上運(yùn)行六敬。

測試環(huán)境

ansible主機(jī)

ansible: 2.3.1.0
os: Centos 7.2 X64
python: 2.7.5

ansible管理主機(jī)

os: Centos 6.7 X64, Centos 7.2 X64

角色變量

software_files_path: "/opt/software"
software_install_path: "/usr/local"

tengine_version: "2.2.0"

tengine_file: "tengine-{{ tengine_version }}.tar.gz"
tengine_file_path: "{{ software_files_path }}/{{ tengine_file }}"
tengine_file_url: "http://tengine.taobao.org/download/tengine-{{ tengine_version }}.tar.gz"

tengine_temp_path: "/var/tmp/tengine"
tengine_conf_path: "{{ software_install_path }}/tengine-{{ tengine_version }}/conf/"
tengine_conf_file_path: "{{ software_install_path }}/tengine-{{ tengine_version }}/conf/nginx.conf"

tengine_user: 'tengine'
tengine_group: 'tengine'
tengine_build_options: ''
tengine_configure_command: >
  ./configure 
  --prefix={{ software_install_path }}/tengine-{{ tengine_version }}
  --user={{ tengine_user }}
  --group={{ tengine_group }}
  --with-poll_module
  --with-file-aio
  --with-http_sub_module
  --with-http_ssl_module
  --with-http_flv_module
  --with-http_dav_module
  --with-http_mp4_module
  --with-http_stub_status_module
  --with-http_gunzip_module
  --with-http_gzip_static_module
  --with-http_realip_module
  --with-http_slice_module
  --with-http_image_filter_module
  --with-http_auth_request_module
  --with-http_concat_module
  --with-http_random_index_module
  --with-http_secure_link_module
  --with-http_sysguard_module
  --with-http_degradation_module
  --with-http_v2_module
  --http-client-body-temp-path={{ tengine_temp_path }}/client/
  --http-proxy-temp-path={{ tengine_temp_path }}/proxy/
  --http-fastcgi-temp-path={{ tengine_temp_path }}/fcgi/
  --http-uwsgi-temp-path={{ tengine_temp_path }}/uwsgi
  --http-scgi-temp-path={{ tengine_temp_path }}/scgi 
  --with-pcre 
  {{ tengine_build_options }}

tengine_pidfile: '/var/run/tengine.pid'
tengine_worker_processes: "{{ ansible_processor_vcpus | default(ansible_processor_count) }}"
tengine_worker_connections: "10240"
tengine_multi_accept: "off"
tengine_pid_file: "/var/run/tengine.pid"

tengine_logpath: "/var/log/tengine"
tengine_error_log: "{{ tengine_logpath }}/error.log"
tengine_access_log: "{{ tengine_logpath }}/access.log"
tengine_mime_file_path: "mime.types"

tengine_sendfile: "on"
tengine_tcp_nopush: "on"
tengine_tcp_nodelay: "off"

tengine_keepalive_timeout: "65"
tengine_keepalive_requests: "1000"

tengine_client_max_body_size: "64m"

tengine_server_names_hash_bucket_size: "64"

tengine_proxy_cache_path: ""

tengine_extra_conf_options: ""

tengine_extra_http_options: ""

tengine_remove_default_vhost: false
tengine_vhosts: []

tengine_upstreams: ''

tengine_proxys: false
tengine_gzip: false
tengine_stub_status: false
tengine_stream: false

依賴

沒有

github地址

https://github.com/kuailemy123/Ansible-roles/tree/master/tengine

Example Playbook

默認(rèn)安裝tengine
- hosts: node1
  roles:
   - tengine

反向代理
- hosts: node1
  vars:
   - tengine_vhosts:
        - listen: 80
          locations:
            - name: /
              proxy_pass: http://192.168.77.135:8080
              proxy_set_headers:
                Host: $host
                X-Real-IP: $remote_addr
                X-Forwarded-For: $proxy_add_x_forwarded_for
  roles:
   - tengine

反向代理緩存,采用擴(kuò)展選項(xiàng)
- hosts: node1
  vars:
   - tengine_proxy_cache_path: /data/nginx/cache levels=1:2 keys_zone=STATIC:10m inactive=24h max_size=5g
   - tengine_vhosts:
        - listen: 80
          extra_parameters: |
                    location / {
                        proxy_pass   http://192.168.77.135:8080;
                        proxy_set_header Host $host;
                        proxy_set_header X-Real-IP $remote_addr;
                        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                        proxy_cache STATIC;
                        proxy_cache_valid 200 1d;
                        proxy_cache_use_stale error timeout invalid_header updating http_500 http_502 http_503 http_504;
                    }
  roles:
   - tengine

反向負(fù)載均衡
- hosts: node1
  vars:
   - tengine_upstreams:
      - name: upstremtest
        servers:
          - 127.0.0.1:8000 weight=3 max_fails=2 fail_timeout=2
          - 127.0.0.1:8001
          - 127.0.0.1:8002
          - 127.0.0.1:8003 backup
   - tengine_vhosts:
        - listen: 80
          locations:
           - name: /
             proxy_pass: http://upstremtest
  roles:
   - tengine

使用

/etc/init.d/tengine 
Usage: /etc/init.d/tengine {start|stop|reload|configtest|status|force-reload|upgrade|restart|reopen_logs}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末碘赖,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子外构,更是在濱河造成了極大的恐慌普泡,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件审编,死亡現(xiàn)場離奇詭異撼班,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)垒酬,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進(jìn)店門砰嘁,熙熙樓的掌柜王于貴愁眉苦臉地迎上來件炉,“玉大人,你說我怎么就攤上這事般码∑蘼剩” “怎么了?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵板祝,是天一觀的道長宫静。 經(jīng)常有香客問我,道長券时,這世上最難降的妖魔是什么孤里? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮橘洞,結(jié)果婚禮上捌袜,老公的妹妹穿的比我還像新娘。我一直安慰自己炸枣,他們只是感情好虏等,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著适肠,像睡著了一般霍衫。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上侯养,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天敦跌,我揣著相機(jī)與錄音,去河邊找鬼逛揩。 笑死柠傍,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的辩稽。 我是一名探鬼主播惧笛,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼搂誉!你這毒婦竟也來了徐紧?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤炭懊,失蹤者是張志新(化名)和其女友劉穎并级,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體侮腹,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡嘲碧,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了父阻。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片愈涩。...
    茶點(diǎn)故事閱讀 38,163評論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡望抽,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出履婉,到底是詐尸還是另有隱情煤篙,我是刑警寧澤,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布毁腿,位于F島的核電站辑奈,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏已烤。R本人自食惡果不足惜鸠窗,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望胯究。 院中可真熱鬧稍计,春花似錦、人聲如沸裕循。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽剥哑。三九已至茧球,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間星持,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工弹灭, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留督暂,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓穷吮,卻偏偏與公主長得像逻翁,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子捡鱼,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,925評論 2 344

推薦閱讀更多精彩內(nèi)容