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
version: '3.6' | |
services: | |
tinyproxy: | |
image: serjs/go-socks5-proxy | |
restart: unless-stopped | |
ports: | |
- 8888:1080 | |
environment: | |
PROXY_USER: awesome_user | |
PROXY_PASSWORD: awesome_password |
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
#!/bin/bash | |
set +H | |
# install required packages | |
apt-get update | |
apt-get -y install docker.io | |
# run 3x-ui Docker container |
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
#!/bin/bash | |
# required Chrome version can be found here: | |
# https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable | |
CHROME_VERSION="" | |
wget --no-check-certificate \ | |
https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb |
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
// Thanks to: https://siberianlaika.ru/node/29/ | |
package main | |
import ( | |
"fmt" | |
"net/http" | |
"net/http/httputil" | |
"net/url" | |
"os" |
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
#!/bin/bash | |
GREEN_COLOR="\033[0;32m" | |
NO_COLOR="\033[0m" | |
# variables below must be initialized in order to make script working | |
GITHUB_USERNAME="" | |
GITHUB_PAGES_REPO="" |
NewerOlder