Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

s #5

Merged
merged 3 commits into from
Dec 4, 2023
Merged

s #5

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions 0x0C-web_server/1-install_nginx_web_server
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# Installs Nginx with the following configurations:
apt-get update
apt-get install -y nginx

echo "Hello World!" | sudo tee /var/www/html/index.html
sudo nginx -t
sudo service nginx restart
1 change: 1 addition & 0 deletions 0x0C-web_server/2-setup_a_domain_name
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rezzcode.tech
21 changes: 21 additions & 0 deletions 0x0C-web_server/7-puppet_install_nginx_web_server.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Automating project requirements using Puppet

package { 'nginx':
ensure => installed,
}

file_line { 'install':
ensure => 'present',
path => '/etc/nginx/sites-enabled/default',
after => 'listen 80 default_server;',
line => 'rewrite ^/redirect_me https://www.github.com/the1Riddle permanent;',
}

file { '/var/www/html/index.html':
content => 'Hello World!',
}

service { 'nginx':
ensure => running,
require => Package['nginx'],
}