Newer
Older
dockerfiles / nginx.dockerfile
Kryosuke on 6 Jan 2022 1 KB dockerfiles
  1. # 使用するubuntuのバージョンを指定
  2. FROM ubuntu:18.04
  3.  
  4. # 使うコマンドをインストール
  5. RUN apt-get -y update
  6.  
  7. RUN apt-get install -y init
  8.  
  9. RUN apt-get install -y systemd
  10.  
  11. RUN apt-get install -y vim
  12.  
  13. RUN apt-get install -y nginx
  14.  
  15. CMD [ "/sbin/init" ]
  16.  
  17. RUN touch /etc/nginx/conf.d/server.conf
  18.  
  19. RUN echo "server{
  20. # server_name 192.168.11.129;
  21. #
  22. # proxy_set_header Host $host;
  23. # proxy_set_header X-Real-IP $remote_addr;
  24. # proxy_set_header X-Forwarded-Host $host;
  25. # proxy_set_header X-Forwarded-Server $host;
  26. # proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  27. #
  28. # location /gitbucket/ {
  29. # proxy_pass http://192.168.11.129:8082/gitbucket/;
  30. # }
  31. #
  32. # location /jenkins/ {
  33. # proxy_pass http://192.168.11.129:8081/jenkins/;
  34. # }
  35. # location /acanthus/ {
  36. # proxy_pass http://192.168.11.129:10000/acanthus/;
  37. # }
  38. # rewrite ^/redmine http://192.168.11.129:3000 permanent;" > /etc/nginx/conf.d/server.conf
  39. #}
  40.  
  41. #2:37.937