services:
clickhouse:
image: clickhouse/clickhouse-server:23.8.4.69
ports:
# http interface
- "8123:8123"
# native interface for cliclkhiuse-client
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
| Install Docker on Raspberry Pi: | |
| curl -sSL https://get.docker.com | sh | |
| Add user to docker group: | |
| sudo usermod -aG docker ${USER} | |
| #relog into raspberry pi | |
| Contents of docker-compose.yml file: | |
| ------------------------------------ |
- Logging into docker-machine:
docker-machine ssh default - Create temporary working directory and changing to:
mkdir kerio && cd kerio - Download latest DEB-package of Kerio VPN client:
wget https://cdn.kerio.com/dwn/kerio-control-vpnclient-linux-amd64.deb - Unpack the package using
arutility:ar -x kerio-control-vpnclient-linux-amd64.deb - Unpack internal archives:
tar -xzvf control.tar.gz
tar -xJvf data.tar.xz
- Copy all the shared libraries
- Using a ready-to-use Ubuntu image
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
| export LESS_TERMCAP_mb=$'\e[1;34m' # begin bold | |
| export LESS_TERMCAP_md=$'\e[1;32m' # begin blink | |
| export LESS_TERMCAP_so=$'\e[01;44;37m' # begin reverse video | |
| export LESS_TERMCAP_us=$'\e[01;36m' # begin underline | |
| export LESS_TERMCAP_me=$'\e[0m' # reset bold/blink | |
| export LESS_TERMCAP_se=$'\e[0m' # reset reverse video | |
| export LESS_TERMCAP_ue=$'\e[0m' # reset underline | |
| export GROFF_NO_SGR=1 # for konsole and gnome-terminal | |
| export MANPAGER='less -s -M +Gg' |
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
| # UPDATED 17 February 2019 | |
| # Redirect all HTTP traffic to HTTPS | |
| server { | |
| listen 80; | |
| listen [::]:80; | |
| server_name www.domain.com domain.com; | |
| return 301 https://$host$request_uri; | |
| } | |
| # SSL configuration |
People
:bowtie: |
๐ :smile: |
๐ :laughing: |
|---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
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
| -- 1. Place in ~/Library/Scripts and enable the Applescript menu via the Applescript Editor | |
| -- 2. Substitute "vpn.example.com" and "redacted" for your VPN server and password | |
| -- 3. Open Security & Privacy System Preferences, go to Privacy, Accessibility | |
| -- 4. Enable Applescript Editor and System UI Server | |
| -- 5. Trigger script from the menu | |
| -- 6. Enjoy being connected | |
| tell application "Cisco AnyConnect Secure Mobility Client" | |
| activate | |
| end tell |
NewerOlder