• Resolved shift8

    (@shift8)


    Curious if there is a way to get the VRT regression screenshot / test system to work for sites behind simple http auth. Having a site behind authentication is common for a staging site ,which is a scenario I dont think is very uncommon.

Viewing 1 replies (of 1 total)
  • Plugin Support steffenbew

    (@steffenbew)

    Hey @shift8, the VRTs plugin doesn’t directly support bypassing authentication. However, you can solve this by whitelisting the VRTs service IP (49.13.14.240) in your basic auth configuration.

    Example:

    # Enable authentication
    AuthType Basic
    AuthName "Restricted Content"
    AuthUserFile /etc/apache2/.htpasswd
    
    # Set up access control
    Require valid-user
    Order allow,deny
    
    # Whitelist VRTs service
    Allow from 49.13.14.240
    Satisfy Any
Viewing 1 replies (of 1 total)
  • The topic ‘Sites behind http auth’ is closed to new replies.