/etc/yubico/val/apache.conf is in yubikey-val 2.27-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # yubikey-val default Apache configuration
<IfModule mod_php5.c>
Alias /wsapi/2.0/verify /usr/share/yubikey-val/ykval-verify.php
Alias /wsapi/verify /usr/share/yubikey-val/ykval-verify.php
Alias /wsapi/2.0/sync /usr/share/yubikey-val/ykval-sync.php
Alias /wsapi/2.0/resync /usr/share/yubikey-val/ykval-resync.php
Alias /wsapi/revoke /usr/share/yubikey-val/ykval-revoke.php
<Directory /usr/share/yubikey-val>
Options None
AllowOverride None
<IfVersion >= 2.3>
Require all granted
</IfVersion>
<IfVersion < 2.3>
Order allow,deny
Allow from all
</IfVersion>
php_value include_path ".:/etc/yubico/val:/usr/share/yubikey-val"
</Directory>
</IfModule>
|