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
| // ==UserScript== | |
| // @name Video Bypass (maxstream generic) | |
| // @version 2.0.1 | |
| // @description Bypasses Anti-AdBlock on maxstream-like streaming sites. On /watchfree/* pages, extracts the real video URL from iframes and redirects. On other pages, blocks alert/confirm/prompt dialogs. | |
| // @author antwal, ngi | |
| // @license MIT | |
| // @match https://*.maxstream.video/* | |
| // @match https://*/*watchfree/* | |
| // @grant none | |
| // @run-at document-start |
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
| // Compiled by Igor Shults | |
| // Last Updated: July 23, 2020 | |
| GRAILS GROOVY SOURCE | |
| 4.1.0 2.5.14 https://github.com/grails/grails-core/blob/v4.1.0/gradle.properties | |
| 4.0.4 2.5.6 | |
| 4.0.3 2.5.6 | |
| 4.0.2 2.5.6 | |
| 4.0.1 2.5.6 | |
| 4.0.0 2.5.6 https://github.com/grails/grails-core/blob/v4.0.0/build.gradle |
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
| description "Tomcat Server" | |
| start on runlevel [2345] | |
| stop on runlevel [!2345] | |
| respawn | |
| respawn limit 10 5 | |
| # run as non privileged user | |
| # add user with this command: | |
| ## adduser --system --ingroup www-data --home /opt/apache-tomcat apache-tomcat |