This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global | |
log 127.0.0.1 local2 | |
chroot /var/lib/haproxy | |
pidfile /var/run/haproxy.pid | |
maxconn 4000 | |
user haproxy | |
group haproxy | |
daemon |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################### | |
# The MIT License | |
# | |
# Copyright 2012-2014 Jakub Jirutka <[email protected]>. | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@acruxdb bench]# cat rssd{a..d}-steady-state_2*| egrep '^.*(read|write.*GB).*iops=' | |
write: io=31299GB, bw=537093KB/s, iops=134273, runt=61106537msec | |
read : io=10433GB, bw=1548.5MB/s, iops=396408, runt=6899432msec | |
write: io=31299GB, bw=534024KB/s, iops=133505, runt=61457727msec | |
read : io=10433GB, bw=1555.3MB/s, iops=398132, runt=6869554msec | |
write: io=31299GB, bw=536998KB/s, iops=134249, runt=61117317msec | |
read : io=31299GB, bw=1553.7MB/s, iops=397727, runt=20629605msec | |
write: io=31299GB, bw=537087KB/s, iops=134271, runt=61107196msec | |
read : io=10433GB, bw=1545.1MB/s, iops=395745, runt=6910980msec |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 192.168.0.30:80; | |
#keepalive_timeout 70; | |
server_name blesta.domain.com www.blesta.domain.com; | |
access_log /var/log/nginx/blesta.domain.com_access_log main buffer=16k; | |
error_log /var/log/nginx/blesta.domain.com_error_log; | |
root /var/www/vhosts/blesta/blesta; | |
index index.html index.php; | |
fastcgi_intercept_errors on; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# ^^^ YAML documents must begin with the document separator "---" | |
# | |
#### Example docblock, I like to put a descriptive comment at the top of my | |
#### playbooks. | |
# | |
# Overview: Playbook to bootstrap a new host for configuration management. | |
# Applies to: production | |
# Description: | |
# Ensures that a host is configured for management with Ansible. |