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
" set nocompatible | |
set nocompatible | |
" enable syntax highligting | |
syntax on | |
" suppress welcome screen | |
set shortmess+=I | |
" some useful options |
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
# Variables | |
setenv FOO bar | |
# Settings | |
startup_message off | |
shell zsh | |
vbell off | |
defutf8 on | |
defscrollback 10000 | |
autodetach 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
# init | |
autoload -U colors && colors | |
alias ls='ls --color=auto' | |
alias rm='rm -i' | |
setopt nobeep # avoid beep | |
setopt noglobdots # * shouldn't match dotfiles | |
setopt no_auto_remove_slash | |
setopt hash_list_all |
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
[Unit] | |
Description=FastCGI mono server 4 | |
After=network.target | |
[Service] | |
Environment=MONO_IOMAP=all | |
EnvironmentFile= | |
Type=simple | |
ExecStart=/usr/bin/fastcgi-mono-server4 /applications=*:/:/srv/www/mvc/ /socket=tcp:127.0.0.1:9000 | |
User=www-data |
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
[Unit] | |
Description=uWSGI Emperor | |
After=syslog.target | |
[Service] | |
ExecStart=/usr/bin/uwsgi --json /etc/uwsgi/emperor.json | |
# Requires systemd version 211 or newer | |
RuntimeDirectory=uwsgi | |
Restart=always | |
KillSignal=SIGQUIT |
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
[Unit] | |
Description=MongoDB Database Server | |
After=network.target | |
[Service] | |
User=mongodb | |
Group=mongodb | |
ExecStart=/usr/bin/mongod --config /etc/mongod.conf | |
PIDFile=/var/run/mongodb/mongod.pid |
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
<?xml version="1.0" encoding="utf-8"?> | |
<configuration> | |
<packageRestore> | |
<add key="enabled" value="True" /> | |
<add key="automatic" value="True" /> | |
</packageRestore> | |
<config> | |
<add key="https_proxy" value="http://127.0.0.1:3128/" /> | |
<add key="http_proxy" value="http://127.0.0.1:3128/" /> | |
<add key="globalPackagesFolder" value="e:\Entwicklung\.nuget" /> |
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
[Unit] | |
Description=Gogs | |
After=syslog.target | |
After=network.target | |
#After=mysqld.service | |
#After=postgresql.service | |
#After=memcached.service | |
#After=redis.service | |
[Service] |
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
[Unit] | |
Description=dotnet <your service name> | |
After=network.target | |
[Service] | |
Environment=ASPNETCORE_URLS=http://127.0.0.1:5000/ | |
EnvironmentFile= | |
;Restart=always | |
;RestartSec=10 | |
Type=simple |
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
[Unit] | |
Description=Goaccess Web log report. | |
After=network.target | |
[Service] | |
Type=simple | |
User=root | |
Group=root | |
Restart=always | |
ExecStart=/usr/local/bin/goaccess -a -g -f /var/log/nginx/access.log -o /srv/www/goaccess/index.html --real-time-html --ws-url <your url> |
OlderNewer