# sudo add-apt-repository ppa:wireguard/wireguard
# sudo apt-get update
# sudo apt-get install wireguard
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
#GREEN | |
upstream NODE_SSR_GREEN { server 127.0.0.1:8080; } | |
upstream NODE_SSR_BLUE { server 127.0.0.1:8082; } | |
#Основной сервер | |
server { | |
set $ACTIVE_SSR NODE_SSR_GREEN; | |
set $APP_ROOT /var/www/app-GREEN/dist; | |
server_name vue.ssr; |
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
global | |
log /dev/log local0 | |
log /dev/log local1 notice | |
chroot /var/lib/haproxy | |
stats socket /run/haproxy/admin.sock mode 660 level admin expose-fd listeners | |
stats timeout 30s | |
user haproxy | |
group haproxy | |
daemon |
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
# Begin HackRepair.com Blacklist | |
RewriteEngine on | |
# Abuse Agent Blocking | |
RewriteCond %{HTTP_USER_AGENT} ^[Ww]eb[Bb]andit [NC,OR] | |
RewriteCond %{HTTP_USER_AGENT} ^$ [NC,OR] | |
RewriteCond %{HTTP_USER_AGENT} ^Acunetix [NC,OR] | |
RewriteCond %{HTTP_USER_AGENT} ^binlar [NC,OR] | |
RewriteCond %{HTTP_USER_AGENT} ^BlackWidow [NC,OR] | |
RewriteCond %{HTTP_USER_AGENT} ^Bolt\ 0 [NC,OR] | |
RewriteCond %{HTTP_USER_AGENT} ^BOT\ for\ JCE [NC,OR] |
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
version: "3.3" | |
services: | |
traefik: | |
image: "traefik:v2.0.0" | |
command: | |
- --entrypoints.web.address=:80 | |
- --entrypoints.websecure.address=:443 | |
- --providers.docker | |
- --api |
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
[Unit] | |
Description=Generate email log pekerjaan | |
[Service] | |
User=sumarsono | |
Group=sumarsono | |
Type=simple | |
ExecStart=/home/sumarsono/Sumarsono/sumar-bash/generateMail.sh | |
[Install] |
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
# ----------------------------------------------------------------------------------------------------------------------------- | |
# --------------------- General Settings -------------------------------------------------------------------------------------- | |
# ----------------------------------------------------------------------------------------------------------------------------- | |
HOSTNAME=vps | |
DOMAINNAME=sumarsono.com | |
CONTAINER_NAME=mailserver | |
# empty => uses the `hostname` command to get the mail server's canonical hostname |
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
Sep 27 09:45:11 Sailfish systemd[1]: Starting Myriad Alien Dalvik... | |
Sep 27 09:45:11 Sailfish apkd[4319]: Alien Dalvik is activating (start-pre) | |
Sep 27 09:45:11 Sailfish apkd[4319]: Alien Dalvik is activating (start) | |
Sep 27 09:45:11 Sailfish start_alien.sh[6006]: ln: creating symbolic link `/data/misc/camera/camera': File exists | |
Sep 27 09:45:11 Sailfish start_alien.sh[6006]: /data exists already | |
Sep 27 09:45:11 Sailfish start_alien.sh[6006]: /data/dalvik-cache exists already | |
Sep 27 09:45:11 Sailfish start_alien.sh[6006]: /data/app-private exists already | |
Sep 27 09:45:11 Sailfish start_alien.sh[6006]: /data/app exists already | |
Sep 27 09:45:11 Sailfish start_alien.sh[6006]: /data/data exists already | |
Sep 27 09:45:11 Sailfish start_alien.sh[6006]: /data/misc exists already |
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 yourdomain.com; | |
root /etc/tomcat7/webapps/apple; | |
proxy_cache one; | |
location / { | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; |