mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 17:43:14 +00:00
ea6155b2a1
Have osdeploy pull in requirements itself
17 lines
541 B
Plaintext
17 lines
541 B
Plaintext
LoadModule proxy_http_module modules/mod_proxy_http.so
|
|
SetEnvIf Request_URI "^/confluent-api/nodes/.*/console/session$" dontlog
|
|
Alias /confluent-public /var/lib/confluent/public
|
|
<Directory /var/lib/confluent/public>
|
|
AllowOverride None
|
|
Require all granted
|
|
Options +Indexes +FollowSymLinks
|
|
</Directory>
|
|
|
|
<Location /confluent-api>
|
|
ProxyPass http://127.0.0.1:4005 retry=0
|
|
RewriteEngine On
|
|
RewriteCond %{HTTPS} off
|
|
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
|
|
</Location>
|
|
TraceEnable off
|