Nginx Automation
-
Looking to do an automation script to install an Nginx web server for a job interview and was curious how I should do it to really impress the employer. Thoughts?
-
I think we'd need more info because this is all that is needed:
yum -y install nginx
-
Sorry bout that. Here's the stipulations:
The nginx server should:
a) serve requests over port 8000
b) serve a page with the content of the following repository: https://github.com/-----/exercise-webpage. (page from the repository must be served locally)
c) Please explicitly state all assumptions (e.g. Only runs on RHEL6)I know I can write a bash script, but is that a way to impress, or should I use an automation tool?
-
@antonit said:
I know I can write a bash script, but is that a way to impress, or should I use an automation tool?
Well that really depends on what the employer is after.
-
@JaredBusch They are just looking for me to automate the process. I can use any automation tool or language.