Your IP : 216.73.216.171


Current Path : /home/ereika83/public_html/wp-content/plugins/wp-rocket/inc/3rd-party/hosting/
Upload File :
Current File : /home/ereika83/public_html/wp-content/plugins/wp-rocket/inc/3rd-party/hosting/flywheel.php

<?php
defined( 'ABSPATH' ) or die( 'Cheatin&#8217; uh?' );

if ( class_exists( 'FlywheelNginxCompat' ) ) :
	/**
	 * Allow to purge Varnish on Flywheel websites
	 *
	 * @since 2.6.8
	 */
	add_filter( 'do_rocket_varnish_http_purge', '__return_true' );

	/**
	 * Don't display the Varnish options tab for Flywheel users
	 *
	 * @since 2.7
	 */
	add_filter( 'rocket_display_varnish_options_tab', '__return_false' );

	/**
	 * Set up the right Varnish IP for Flywheel
	 *
	 * @since 2.6.8
	 */
	function rocket_varnish_ip_on_flywheel() {
		return '127.0.0.1';
	}
	add_filter( 'rocket_varnish_ip'	, 'rocket_varnish_ip_on_flywheel' );
endif;