jamesrezo / webhelper
A Generic Httpd Configuration Helper
0.1
2015-03-15 14:53 UTC
Requires
- php: >=5.4.0
- composer/composer: ~1.0@dev
- symfony/console: 2.6.* || ~3.0@dev
- twig/twig: ~1.18
Requires (Dev)
- phpunit/phpunit: ~4.5
This package is auto-updated.
Last update: 2024-10-24 04:19:47 UTC
README
A Generic Httpd Configuration Helper
Installation
For a global installation via Composer, run:
composer global require jamesrezo/webhelper=dev-master
Then, copy app/config/parameters.yml.dist
into ~/.config/webhelper/parameters.yml
Make sure you have ~/.composer/vendor/bin/
or ~/.config/composer/vendor/bin/
in your path.
Usage
wh generate <webserver> <directive1>..<directiveN>
<webserver>
means actually apache and an optional version (see below)<directive>
can be a list of any configuration directive known by the webserver (for now alias, vhost and directory)
Well, syntax is weird... There is the webserver name and optionally the webserver version, separated with a colon (
:
).
- name is required, could be apache, nginx, lighttpd, openlightspeed or whatever this helper can find in its repository.
- version is optional but useful when configuration syntax changes as the webserver evolves.
- apache means the lowest version of Apache webserver
- apache:2 means any 2.x version of Apache webserver
- apache:2.2.16 means... Yes! Apache/2.2.16 precisely.
- apache:2.4 means any 2.4.x version of Apache webserver...
This will output some text that you'll put into a httpd server configuration file.
Contributions
...are welcome, of course ;-)