This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# This is the Apache server configuration file providing SSL support. | |
# It contains the configuration directives to instruct the server how to | |
# serve pages over an https connection. For detailed information about these | |
# directives see <URL:http://httpd.apache.org/docs/2.4/mod/mod_ssl.html> | |
# | |
# Do NOT simply read the instructions in here without understanding | |
# what they do. They're here only as hints or reminders. If you are unsure | |
# consult the online docs. You have been warned. | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fluid Template (Search.html) : | |
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true"> | |
<f:form action="search" method="post" action="search" controller="Search" extensionName="indexedsearch" pluginName="pi2" pageUid="5"> | |
<label for="sword">Search: </label> | |
<f:form.textfield id="sword" name="search[sword]" value="{sword}" class="form-control" /> | |
<f:form.submit name="search[submitButton]" value="Search" /> | |
</f:form> | |
</html> | |
# You can use below lib object everywhere in fluid template! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Security header for website | |
Header set X-Permitted-Cross-Domain-Policies "none" | |
Header set X-Content-Type-Options "nosniff" | |
Header set X-XSS-Protection "1; mode=block" | |
Header set Strict-Transport-Security "max-age=31536000" env=HTTPS | |
Header set X-Frame-Options "SAMEORIGIN" | |
Header set Feature-Policy "geolocation 'self'; vibrate 'none'" | |
Header set Expect-CT enforce,max-age=2592000 | |
Header set Referrer-Policy "origin" |