Skip to content
Snippets Groups Projects
Commit dc545c0e authored by Hoai Viet Nguyen's avatar Hoai Viet Nguyen
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
FROM nginx:stable-alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY index.html /usr/share/nginx/html/index.html
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello World</title>
</head>
<body>
Hello World from Nginx
</body>
</html>
\ No newline at end of file
server {
listen 80;
server_tokens off;
root /usr/share/nginx/html;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment