ft_server 과제해석

이호용·2021년 1월 15일
0

42_ft_server

목록 보기
1/6

ft_server

1. ft_server 과제해석.

Chapter I Introduction

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.

이 주제는 시스템 관리를 소개하기위한 것입니다.
이번 주제는 스크립트를 사용하여 작업을 자동화하는 것이 중요하다는걸 알려줍니다.
이를 위해 당신은 "docker"기술을 사용하여 완전한 웹 서버를 설치합니다. 이 서버는 실행됩니다
다중 서비스 : Wordpress, phpMyAdmin 및 SQL 데이터베이스.

Chapter II General instructions

• You must place all the necessary files for the configuration of your server in a folder
called srcs.
• Your Dockerfile file should be at the root of your repository. It will build your
container. You can’t use docker-compose.
• All the necessary files for your WordPress website should be in the folder srcs.

  • 서버 구성에 필요한 모든 파일을 srcs폴더에 저장해야합니다.
  • Dockerfile 파일은 리포지토리의 루트에 있어야합니다. 이 도커파일은 당신의 컨테이너 만드는데 사용되고 , docker를 만들땐 사용할 수 없습니다.
  • WordPress 웹 사이트에 필요한 모든 파일은 srcs 폴더에 있어야합니다.

Chapter III Mandatory part

• You must set up a web server with Nginx, in only one docker container. The
container OS must be debian buster.
• Your web server must be able to run several services at the same time. The services
will be a WordPress website, phpMyAdmin and MySQL. You will need to make
sure your SQL database works with the WordPress and phpMyAdmin.
• Your server should be able to use the SSL protocol.
• You will have to make sure that, depending on the url, your server redirects to the
correct website.
• You will also need to make sure your server is running with an autoindex that must
be able to be disabled.

  • 하나의 docker 컨테이너에서만 Nginx로 웹 서버를 설정해야합니다. 그만큼 컨테이너 OS는 데비안 버스터 여야합니다.
  • 웹 서버는 동시에 여러 서비스를 실행할 수 있어야합니다. 서비스 WordPress 웹 사이트, phpMyAdmin 및 MySQL 동시에 작동 가능해야함. 당신은 만들 때 SQL 데이터베이스가 WordPress 및 phpMyAdmin과 함께 작동하는지 확인해야합니다.
  • 서버는 SSL 프로토콜을 사용할 수 있어야합니다.
  • URL에 따라 서버가 다음으로 리디렉션되는지 확인해야합니다.
  • 또한 서버가 다음을 수행해야하는 자동 색인으로 실행 중인지 확인해야합니다. 비활성화 될 수 있습니다.

0개의 댓글