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
#!/usr/bin/ruby | |
# Script to setup a shared web hosting instance on Debian Stretch | |
# with SFTP, Apache, MariaDB, LetsEncrypt | |
# * Run this to install required packages | |
# | |
# apt install pwgen ruby mariadb-client mariadb-server php7.0 php7.0-mysql \ | |
# apache2 libapache2-mod-php7.0 phpmyadmin libapache2-mpm-itk | |
# a2enmod rewrite |
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
DocumentRoot /var/www/owncloud | |
<Directory /var/www/owncloud/> | |
AllowOverride All | |
<FilesMatch ".+\.ph(p[345]?|t|tml)$"> | |
SetHandler application/x-httpd-php | |
</FilesMatch> | |
</Directory> | |
<Directory /var/www/owncloud.domain.net/htdocs/owncloud> | |
Order allow,deny |
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
diff --git a/config/locales/ca.yml b/config/locales/ca.yml | |
new file mode 100644 | |
index 0000000..fd62e25 | |
--- /dev/null | |
+++ b/config/locales/ca.yml | |
@@ -0,0 +1,7 @@ | |
+ca: | |
+ exception_handler_label_email_recipients: "Email dels destinataris" | |
+ exception_handler_label_separate_multiple_emails_with_commas: "Per introduïr múltiples adreces, separeu amb comes" | |
+ exception_handler_label_sender_address: "Remitent" |