Hello
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 | |
| case "`grep DISTRIB_CODENAME /etc/*-release | awk -F '=' '{print $2}'`" in | |
| trusty) | |
| if [ "$(whoami)" != "root" ] | |
| then | |
| echo "You should Login as root to use this script!"; | |
| echo "May you already have access for sudo, but commands aren't designed with sudo! so.."; | |
| echo "sudo -i"; | |
| exit 1 | |
| fi |
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
| # $OpenBSD: sshd_config,v 1.101 2017/03/14 07:19:07 djm Exp $ | |
| # This is the sshd server system-wide configuration file. See | |
| # sshd_config(5) for more information. | |
| # This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin | |
| # The strategy used for options in the default sshd_config shipped with | |
| # OpenSSH is to specify options with their default value where | |
| # possible, but leave them commented. Uncommented options override the |
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
| # Suggestions? => https://github.com/theraw/The-World-Is-Yours/issues | |
| # Problems? => https://github.com/theraw/The-World-Is-Yours/issues | |
| # Errors? => https://github.com/theraw/The-World-Is-Yours/issues | |
| user nginx; | |
| pid /var/run/nginx.pid; | |
| worker_processes auto; | |
| worker_rlimit_nofile 65535; | |
| events { | |
| multi_accept on; | |
| use epoll; |
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
| [www] | |
| ;prefix = /path/to/pools/$pool | |
| user = xtreamcodes | |
| group = xtreamcodes | |
| listen = 127.0.0.1:9000 | |
| ; Set listen(2) backlog. | |
| ; Default Value: 511 (-1 on FreeBSD and OpenBSD) | |
| ;listen.backlog = 511 |
- Create one cloudflare account.
- From account dashboard select Workers
- Create Worker
- follow steps on this page https://nopers.dopemovieio.workers.dev/ (Click "GET AUTHENTICATION CODE" then copy/paste it on the "Paste Authentication Code Here" input after that click "GENERATE CODE" and it will display the code you need to copy/paste on your cloudflare worker.
- Follow the https://nopers.dopemovieio.workers.dev/ copy the code
- Go to your worker on cloudflare click "QUICK EDIT" copy folder ids and save them and delete all the code, then paste the new code you got from https://nopers.dopemovieio.workers.dev/ add your folder ids/names and click "save and deploy"
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
| curl -SL "https://bintray.com/ookla/download/download_file?file_path=ookla-speedtest-1.0.0-x86_64-linux.tgz" | tar xvz -C /tmp && /tmp/speedtest |
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
| Include /etc/proftpd/modules.conf | |
| UseIPv6 on | |
| IdentLookups off | |
| ServerName "Debian" | |
| ServerType standalone | |
| DeferWelcome off | |
| MultilineRFC2228 on | |
| DefaultServer on | |
| ShowSymlinks on | |
| TimeoutNoTransfer 600 |
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.7' | |
| services: | |
| nginx: | |
| container_name: nginx | |
| ports: | |
| - "0.0.0.0:80:80" | |
| - "0.0.0.0:81:81" | |
| - "0.0.0.0:443:443" | |
| image: "jc21/nginx-proxy-manager:latest" | |
| shm_size: '512MB' |
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
| <script type="text/javascript" src="//www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1"></script> | |
| <script type="text/javascript" src="https://cdn.myth.theoplayer.com/e5b43aad-0d87-4f84-a3ab-50d088b916e0/THEOplayer.js"></script> | |
| <link rel="stylesheet" type="text/css" href="https://cdn.myth.theoplayer.com/e5b43aad-0d87-4f84-a3ab-50d088b916e0/ui.css" /> | |
| <div class="theoplayer-container video-js theoplayer-skin vjs-16-9"></div> | |
| <script> | |
| var element = document.querySelector(".theoplayer-container"); | |
| var player = new THEOplayer.Player(element, { | |
| libraryLocation: "https://cdn.myth.theoplayer.com/e5b43aad-0d87-4f84-a3ab-50d088b916e0" | |
| }); |