This file contains hidden or 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
| --- | |
| - hosts: all | |
| gather_facts: no | |
| vars: | |
| string: "string" | |
| list: | |
| - item1 | |
| - item2 | |
| dict: | |
| key1: value1 |
This file contains hidden or 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
| #user nobody; | |
| worker_processes 4; | |
| #error_log logs/error.log; | |
| #error_log logs/error.log notice; | |
| #error_log logs/error.log info; | |
| #pid logs/nginx.pid; |
This file contains hidden or 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
| # These are fragments of the configuration that will need to be updated | |
| # --- | |
| ## GitLab URL | |
| ##! URL on which GitLab will be reachable. | |
| ##! For more details on configuring external_url see: | |
| ##! https://docs.gitlab.com/omnibus/settings/configuration.html#configuring-the-external-url-for-gitlab | |
| external_url 'https://gitlab.your-fqdn.com' | |
| #external_url 'http://gitlab.internal.lan' |
This file contains hidden or 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
| /*-------------------- | |
| | | |
| | TinyMCE default config | |
| | | |
| --------------------*/ | |
| var getConfig = function(options) { | |
| var baseTinymceConfig = { | |
| menubar: false, |
This file contains hidden or 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
| #!/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 |
OlderNewer