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' | |
services: | |
traefik: | |
image: traefik:v2.0.0 | |
command: | |
- --api.insecure=false # set to 'false' on production | |
- --api.dashboard=true # see https://docs.traefik.io/v2.0/operations/dashboard/#secure-mode for how to secure the dashboard | |
- --api.debug=true # enable additional endpoints for debugging and profiling | |
- --log.level=DEBUG # debug while we get it working, for more levels/info see https://docs.traefik.io/observability/logs/ |
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
# Is needed to add A records to the address of the network | |
# Cname with * wildcard would be good | |
version: '3' | |
services: | |
traefik: | |
image: traefik:v2.0.0 | |
command: | |
- --api.insecure=false # set to 'false' on production |
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 | |
add_action('wp_ajax_save_i9_analytics_options', 'save_i9_analytics_options'); | |
function save_i9_analytics_options() | |
{ | |
var_dump($_POST); | |
if (!empty($_POST)) { | |
$i9_analytics_data = $_POST; | |
update_option('i9_analytics_integration_data', json_encode($i9_analytics_data)); |
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 | |
add_action('wp_ajax_save_i9_analytics_options', 'save_i9_analytics_options'); | |
function save_i9_analytics_options() | |
{ | |
if (!empty($_POST)) { | |
$i9_analytics_data = $_POST["data"]; | |
update_option('i9_analytics_integration_data', json_encode($i9_analytics_data)); | |
echo "OK"; | |
wp_die(); |
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 | |
add_action('wp_ajax_save_i9_analytics_options', 'save_i9_analytics_options'); | |
add_action('wp_ajax_nopriv_save_i9_analytics_options', 'save_i9_analytics_options'); | |
function save_i9_analytics_options() | |
{ | |
if (!empty($_POST)) { | |
$i9_heap_id = $_POST["i9_heap_id"]; | |
$i9_mixpanel_id = $_POST['i9_mixpanel_id']; | |
$i9_amplitude_id = $_POST['i9_amplitude_id']; |
NewerOlder