We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way / configuration that allows me to specify a file that is automatically displayed when I use docker?
Specifically I want to provide a techradar under https://techradar.mycompany and user should just open the url and get the radar.
I have setup a apache2 proxy with proxy pass rule. And I really struggle with a way to serve the CSV File directly. Any hints are very welcome.
The text was updated successfully, but these errors were encountered:
This is my current approach with apache 2 but this will show the location of the techradar.csv in the browser header. Still not the best version.
<IfModule mod_ssl.c> <VirtualHost *:443> ServerName techradar.corp SSLEngine on SSLProxyEngine on SSLCertificateFile /etc/ssl/certs/techradar.crt SSLCertificateKeyFile /etc/ssl/private/techradar.key ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined ProxyPass / "http://localhost:8080/" ProxyPassReverse / "http://localhost:8080/" RewriteEngine on RewriteCond %{REQUEST_URI} ^/$ RewriteCond %{QUERY_STRING} ^$ RewriteRule / "https://techradar.corp/?documentId=https://techradar.corp/files/TechRadar.csv" [L] </VirtualHost> </IfModule> <VirtualHost *:80> ServerName techradar.de.ebpgroup.corp Redirect permanent / https://techradar.corp/ </VirtualHost>
Sorry, something went wrong.
No branches or pull requests
Is there a way / configuration that allows me to specify a file that is automatically displayed when I use docker?
Specifically I want to provide a techradar under https://techradar.mycompany and user should just open the url and get the radar.
I have setup a apache2 proxy with proxy pass rule. And I really struggle with a way to serve the CSV File directly. Any hints are very welcome.
The text was updated successfully, but these errors were encountered: