See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| fdisk -lu | |
| pvscan | |
| vgscan | |
| vgchange -a y | |
| lvscan | |
| mount /dev/ubuntu-vg/root /mnt | |
| mount --bind /dev /mnt/dev | |
| mount --bind /proc /mnt/proc |
| - name: Find all .repo files in /etc/yum.repos.d/ | |
| ansible.builtin.find: | |
| paths: "/etc/yum.repos.d/" | |
| patterns: "*.repo" | |
| register: repo_files | |
| - name: Update .repo files to use CentOS Vault for baseurl | |
| ansible.builtin.replace: | |
| path: "{{ item.path }}" | |
| regexp: '^#?(?:\s+)?baseurl=.*mirror.centos.org(.*)' |
I hereby claim:
To claim this, I am signing this object:
| real_ip_header True-Client-IP; | |
| set_real_ip_from 0.0.0.0/0; |
| real_ip_header X-Forwarded-For; | |
| real_ip_recursive on; | |
| set_real_ip_from 10.0.0.0/16; | |
| set_real_ip_from 54.192.0.0/16; | |
| set_real_ip_from 54.230.0.0/16; | |
| set_real_ip_from 54.239.128.0/18; | |
| set_real_ip_from 54.239.192.0/19; | |
| set_real_ip_from 54.240.128.0/18; | |
| set_real_ip_from 204.246.164.0/22; | |
| set_real_ip_from 204.246.168.0/22; |
| real_ip_header X-Forwarded-For; | |
| real_ip_recursive on; | |
| set_real_ip_from 10.0.0.0/16; | |
| set_real_ip_from 54.192.0.0/16; | |
| set_real_ip_from 54.230.0.0/16; | |
| set_real_ip_from 54.239.128.0/18; | |
| set_real_ip_from 54.239.192.0/19; | |
| set_real_ip_from 54.240.128.0/18; | |
| set_real_ip_from 204.246.164.0/22; | |
| set_real_ip_from 204.246.168.0/22; |
| <?php | |
| /** | |
| * @file | |
| * Amazon Elastic Load Balancer Settings. | |
| * | |
| * Force server to use https:// path if SSL is handled at load balancer. | |
| * | |
| * @see http://drupal.org/node/185161#comment-5452038 | |
| */ |