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 | |
read -r -d '' TEMPLATE << EOM | |
- status_url: unix:///var/lib/php-fpm/{{web}}.sock/status | |
ping_url: unix:///var/lib/php-fpm/{{web}}.sock/ping | |
use_fastcgi: true | |
ping_reply: pong | |
tags: | |
- website.domain:{{domain}} | |
EOM |
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
async function getAuthCode(id = '') { | |
const resp = await fetch("https://robot.your-server.de/domain/authcode/id/"+id, { | |
"headers": { | |
"accept": "*/*", | |
"accept-language": "de-DE,de;q=0.9,en-US;q=0.8,en;q=0.7", | |
"cache-control": "no-cache", | |
"pragma": "no-cache", | |
"sec-fetch-dest": "empty", | |
"sec-fetch-mode": "cors", | |
"sec-fetch-site": "same-origin", |
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
<?php | |
/* | |
Plugin Name: RSS2 Feed with Images | |
Plugin URI: | |
Description: Add image objects to the RSS2 Feed | |
Version: 1.1 | |
Author: Jan Thiel | |
Author URI: https://hive-it.de | |
License: GPL2 | |
*/ |