22 lines
862 B
Bash
Executable File
22 lines
862 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
dest=$HOME/Documents/conf
|
|
|
|
cp /opt/homebrew/etc/httpd/other/boiteverte.conf "$dest"
|
|
cp /opt/homebrew/etc/httpd/other/clicclac.conf "$dest"
|
|
cp /opt/homebrew/etc/httpd/other/sentier.conf "$dest"
|
|
cp /opt/homebrew/etc/httpd/extra/httpd-vhosts.conf "$dest"
|
|
cp /opt/homebrew/etc/httpd/extra/httpd-ssl.conf "$dest"
|
|
cp /opt/homebrew/etc/httpd/httpd.conf "$dest"
|
|
cp -r /opt/homebrew/etc/httpd/certs "$dest"
|
|
|
|
#cp /opt/homebrew/etc/php/8.1/conf.d/imagick.ini "$dest"
|
|
#cp /opt/homebrew/etc/php/8.1/php-fpm.conf "$dest"
|
|
#cp /opt/homebrew/etc/php/8.1/php.ini "$dest"
|
|
#cp /opt/homebrew/etc/php/8.1/php-fpm.d/www.conf "$dest"
|
|
#cp /opt/homebrew/etc/php/8.2/php.ini "$dest"
|
|
#cp -r /opt/homebrew/etc/php/8.1/conf.d "$dest"
|
|
#cp /opt/homebrew/etc/php/8.1/pear.conf "$dest"
|
|
|
|
cp /opt/homebrew/etc/redis-sentinel.conf "$dest"
|
|
cp /opt/homebrew/etc/redis.conf "$dest" |