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
@ECHO OFF | |
SETLOCAL | |
SET ME=%~n0 | |
SET PARENT=%~dp0 | |
ECHO Running %ME%... | |
:MENU | |
ECHO. | |
ECHO ##################### |
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
Obsolete version, please use https://github.com/Laforeta/ooi2/wiki/Installation-on-ubuntu-14.04-Trusty/ |
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
# Source: http://dazzyd.org/blog/2016/03/17/kantai-collection-obfuscation-anti-obfuscation/ | |
# All rights remain with the author(s) cited | |
#!/usr/bin/env python3 | |
import sys | |
ORDER = [0, 7, 2, 5, 4, 3, 6, 1] | |
SRC = sys.argv[1] | |
DEST = sys.argv[2] |
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
server { | |
listen 80; | |
server_name $your_domain_name; | |
location / { | |
proxy_http_version 1.1; | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Connection "upgrade"; | |
proxy_pass http://127.0.0.1:9000; | |
} |
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://$domain:$port { | |
gzip | |
log /var/log/caddy.log | |
tls $email | |
forwardproxy { | |
basicauth $user $passwd | |
} | |
} |