Skip to content

Instantly share code, notes, and snippets.

@nurrony
Forked from rafaelfoster/gitlab_selinux.sh
Created February 28, 2025 05:56
Show Gist options
  • Save nurrony/caca0888f26d552dd219084942bfd5a9 to your computer and use it in GitHub Desktop.
Save nurrony/caca0888f26d552dd219084942bfd5a9 to your computer and use it in GitHub Desktop.
Gitlab SELinux Configs
# The lines bellow set the Gitlab to work with SELinux
# As the Documentation Says: DO NOT DISABLE SELinux, just adjust it!
# Tips taken from: https://gitlab.com/gitlab-org/gitlab-recipes/blob/master/web-server/apache/README.md
setsebool -P httpd_can_network_connect on
setsebool -P httpd_can_network_relay on
setsebool -P httpd_enable_homedirs on
setsebool -P httpd_read_user_content on
semanage fcontext -a -t user_home_dir_t '/home/git(/.*)?'
semanage fcontext -a -t ssh_home_t '/home/git/.ssh(/.*)?'
semanage fcontext -a -t httpd_sys_content_t '/home/git/gitlab/public(/.*)?'
semanage fcontext -a -t httpd_sys_content_t '/var/git/repositories(/.*)?'
restorecon -R /home/git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment