Ever tinkered with configuration files - made a mistake - and then needed the default version again?
# a2enmod-note: needs-configuration # # Action lets you define media types that will execute a script whenever # a matching file is called. This eliminates the need for repeated URL # pathnames for oft-used CGI file processors. # Format: Action media/type /cgi-script/location # Format: Action handler-name /cgi-script/location # # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
For example using the keywords:
actions.conf Apache Ubuntu 16.04
Take look at the unaltered configuration file. Exactly the way it was shipped by the application vendor.
If needed you can download the raw config directly
wget -O actions.conf.example http://exampleconfig.com/static/raw/apache/ubuntu16.04/etc/apache2/mods-available/actions.conf
# a2enmod-note: needs-configuration # # Action lets you define media types that will execute a script whenever # a matching file is called. This eliminates the need for repeated URL # pathnames for oft-used CGI file processors. # Format: Action media/type /cgi-script/location # Format: Action handler-name /cgi-script/location # # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Download the default configuration files of apps like NGINX, Apache, MySQL and many others.
ExampleConfig is free to use for personal and commercial purposes. We’re fully committed to building an archive you can rely on.
All configuration files are pulled from a fresh installation of the application. They remain unaltered in the state they where shipped.
Speed up your process developing Dockerfiles by fetching the right configuration file.
No point in trying to fix things, when clearly a fresh start makes more sense.
Tell me more