0

I am trying to write a shell script on my Apache server with mod_cluster to enable and disable contexts. However, it is not working because of the nonce. How do I disable the check for this?

Googling shows that there is a CheckNonce option but does not indicate into which configuration file it should go.

user1207177
  • 133
  • 1
  • 7

1 Answers1

1

CheckNonce is part of mod_manager config, you can set CheckNonce Off in your Apache mod_cluster config.

Eg:

<VirtualHost *:6666>

    <Location />
        Order deny,allow
        Deny from all
        Allow from 10.33.144.
    </Location>

    CheckNonce Off

    ....

</VirtualHost>
Federico Sierra
  • 3,499
  • 1
  • 18
  • 24