You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
436 B
19 lines
436 B
## |
|
## pks-apache.conf -- Apache Virtual Host Configuration for PKS |
|
## |
|
|
|
Listen 127.0.0.1:80 |
|
|
|
NameVirtualHost 127.0.0.1:80 |
|
|
|
<VirtualHost 127.0.0.1> |
|
ServerName pks.exampke.com |
|
DocumentRoot @l_prefix@/pub/pks |
|
<Directory @l_prefix@/pub/pks> |
|
Options none |
|
AllowOverride none |
|
</Directory> |
|
ProxyPass /pks http://127.0.0.1:11371/pks |
|
ProxyPassReverse /pks http://127.0.0.1:11371/pks |
|
</VirtualHost> |
|
|
|
|