MrGeneration / KB Catalan redirect

0 вподобань
0 форк(-ів)
2 файл(-ів)
Остання активність 3 months ago
Redirects outdated locale slug for knowledge bases from 'es-ca' to 'ca' for improved usability and very easy switching. As shown in the Zammad 7.0 Release video: https://www.youtube.com/watch?v=unwYUx5--7M
1 # Default /help URL (replace help with your custom alias if needed; NOT for custom domains)
2 rewrite ^/help/es-ca/(.*)$ /help/ca/$1 permanent;
3
4 # for custom URLs
5 rewrite ^/es-ca/(.*)$ /ca/$1 permanent;

MrGeneration / Useful Minio Console and Restic commands

0 вподобань
0 форк(-ів)
4 файл(-ів)
Остання активність 3 months ago
Commands used as shown in the video https://youtu.be/P-Pr7Dy6mP8 .
1 {
2 "Version": "2012-10-17",
3 "Statement": [
4 {
5 "Effect": "Allow",
6 "Action": ["s3:*"],
7 "Resource": ["arn:aws:s3:::resticsample/*"]
8 }
9 ]
10 }

MrGeneration / Limit Elasticsearch Memory Usage

0 вподобань
0 форк(-ів)
1 файл(-ів)
Остання активність 3 months ago
Code snippet to create linked storage directories for Zammad. As shown in https://youtu.be/EorlfrN6n60
1 # /etc/elasticsearch/jvm.options.d/heap-size.conf
2 # Below limits Elasticsearch to 1GB memory usage
3 # It uses 50% of your hosts memory by default otherwise
4 -Xms1g
5 -Xmx1g

MrGeneration / Move Store from DB to File (linked directory)

0 вподобань
0 форк(-ів)
2 файл(-ів)
Остання активність 3 months ago
Code snippet to create linked storage directories for Zammad. As shown in https://youtu.be/EorlfrN6n60
1 # Below works with existing data storage. STOP Zammad during below operation
2 mv /opt/zammad_storage/ /opt/zammad_storage/
3 ln -s /opt/zammad_storage/ /opt/zammad/storage
4 chown zammad:zammad /opt/zammad_storage/
5 chmod 700 /opt/zammad_storage/
Новіше Пізніше