zammad/lib/knowledge_base/server_snippet_apache.rb
2026-01-02 15:41:09 +02:00

33 lines
941 B
Ruby

# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
# rubocop:disable Lint/MissingCopEnableDirective
class KnowledgeBase
class ServerSnippetApache < ServerSnippet
def template_path
<<~ERB
# Add following lines to <VirtualHost> directive
RewriteEngine On
RewriteRule ^#{path}(.*) /help$1 [PT]
ERB
end
def template_full
<<~ERB
# Add following lines to <VirtualHost> directive
RewriteEngine On
RewriteCond %{HTTP_HOST} #{host}
RewriteRule (assets|api)/(.*) /$1/$2 [PT]
RewriteCond %{HTTP_HOST} #{host}
RewriteRule #{path}(.*) /help$1 [PT]
ERB
end
def template_original_url
<<~ERB
# Add following lines to <VirtualHost> directive, before ProxyPass
SetEnvIf Request_URI "(.*)" ORIGINAL_URL=$1
RequestHeader add X-ORIGINAL-URL %{ORIGINAL_URL}e
ERB
end
end
end