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
#!/bin/bash | |
printf '\e[1;40;92m' | |
clear | |
printf "All TNT releases are provided\n\tfree of charge for educational and uncommercial reasons.\n" | |
printf "Все релизы TNT предоставляются\n\tбезвозмездно для образовательных и некоммерческих целей.\n" | |
echo "" | |
echo "Press ENTER if you agree or close this window!" | |
echo "Нажмите ENTER, если вы согласны, или закройте окно!" | |
read ok | |
echo "Please wait..." |
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
if (typeof Promise.withResolvers === 'undefined') { | |
Promise.withResolvers = function () { | |
let resolve, reject | |
const promise = new Promise((res, rej) => { | |
resolve = res | |
reject = rej | |
}) | |
return { promise, resolve, reject } | |
} | |
} |
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
#################################################################################################### | |
#### author: SlickStack ############################################################################ | |
#### link: https://slickstack.io ################################################################### | |
#### mirror: https://mirrors.slickstack.io/modules/nginx/nginx-conf.txt ############################ | |
#### path: n/a (boilerplate) ####################################################################### | |
#### destination: /etc/nginx/nginx.conf (after install) ############################################ | |
#### purpose: Nginx main configuration file (server block configuration files are separate) ######## | |
#### module version: Nginx 1.18.x ################################################################## | |
#### sourced by: n/a ############################################################################### | |
#### bash aliases: n/a (ss-install-nginx-config) ################################################### |
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
wakatime |