42    ft_server

ft_server

Development repository for the 42cursus ft_server project @ 42 São Paulo

GitHub code size in bytes GitHub top language GitHub top language GitHub last commit


This topic is intended to introduce you to system administration. It will make you aware of the importance of using scripts to automate your tasks. For that, you will discover the "docker" technology and use it to install a complete web server. This server will run multiples services: Wordpress, phpMyAdmin, and a SQL database.

Download the Subject ⤓


Est. Time Skills Difficulty
84 hours 1722 XP


Usage

#you need docker installed in your system
$ docker build -t ft_server_img .
$ docker run --name ft_server -p 80:80 -p 443:443 -d ft_server_img
$ docker exec -it ft_server /bin/bash

#server is listening on ports 80 and 443. Just access them with your favorite browser.