This file contains 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
==> Downloading http://sourceforge.net/projects/netpbm/files/super_stable/10.35.80/netpbm-10.35.80.tgz | |
File already downloaded in /Users/heatv4/Library/Caches/Homebrew | |
/usr/bin/tar xf /Users/heatv4/Library/Caches/Homebrew/netpbm-10.35.80.tgz | |
==> cp Makefile.config.in Makefile.config | |
cp Makefile.config.in Makefile.config | |
==> make | |
make | |
/private/tmp/homebrew-netpbm-10.35.80-17B1/netpbm-10.35.80/Makefile.common:551: Makefile.depend: No such file or directory | |
cat /dev/null >Makefile.depend | |
make -C /private/tmp/homebrew-netpbm-10.35.80-17B1/netpbm-10.35.80/buildtools/ -f /private/tmp/homebrew-netpbm-10.35.80-17B1/netpbm-10.35.80/buildtools/Makefile \ |
This file contains 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
Some folders in /usr/local/share/man aren't writable. | |
This can happen if you "sudo make install" software that isn't managed | |
by Homebrew. If a brew tries to add locale information to one of these | |
folders, then the install will fail during the link step. | |
You should probably `chown` them: | |
/usr/local/share/man/de | |
/usr/local/share/man/de/man1 | |
/usr/local/share/man/es | |
/usr/local/share/man/es/man1 |
This file contains 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
# zsh is kinda tight | |
set-option -g default-shell $SHELL | |
# copy and paster | |
set-option -g default-command "reattach-to-user-namespace -l zsh" | |
# look good | |
set -g default-terminal "screen-256color" | |
# act like GNU screen |
This file contains 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
# | |
# HTTPS server configuration | |
# | |
server { | |
listen 443; | |
server_name kibana.example.com; | |
access_log /var/log/nginx/kibana.log; | |
ssl on; | |
ssl_certificate /etc/nginx/ssl/server.crt; |
This file contains 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
# | |
# Nginx proxy for Elasticsearch + Kibana | |
# | |
# In this setup, we are password protecting the saving of dashboards. You may | |
# wish to extend the password protection to all paths. | |
# | |
# Even though these paths are being called as the result of an ajax request, the | |
# browser will prompt for a username/password on the first request | |
# | |
# If you use this, you'll want to point config.js at http://FQDN:80/ instead of |
This file contains 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
curl -XPUT localhost:9200/new_index -d ' | |
{ | |
"mappings": { | |
"host": { "type": "string", "index": "not_analyzed" } | |
} | |
} | |
' |
This file contains 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
# | |
# Nginx proxy for Elasticsearch + Kibana | |
# | |
# In this setup, we are password protecting the saving of dashboards. You may | |
# wish to extend the password protection to all paths. | |
# | |
# Even though these paths are being called as the result of an ajax request, the | |
# browser will prompt for a username/password on the first request | |
# | |
# If you use this, you'll want to point config.js at http://FQDN:80/ instead of |
This file contains 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
{ | |
"SYSLOGLINE": [ | |
[ | |
"Mar 28 14:14:01 host rgmanager[8180]: [script] Executing /etc/init.d/clvmd status" | |
] | |
], | |
"SYSLOGBASE2": [ | |
[ | |
"Mar 28 14:14:01 host rgmanager[8180]:" | |
] |
This file contains 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
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" => General | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Sets how many lines of history VIM has to remember | |
set history=700 | |
" Enable filetype plugins | |
filetype plugin on | |
filetype indent on |
This file contains 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
; | |
; Netatalk 3.x configuration file | |
; | |
[Global] | |
; Global server settings | |
log file = /var/log/netatalk.log | |
uam list = uams_dhx.so,uams_dhx2.so | |
save password = no | |
aclinherit = passthrough |
OlderNewer