内容へ移動
fl8 Wiki
ユーザ用ツール
ログイン
サイト用ツール
検索
ツール
文書の表示
以前のリビジョン
バックリンク
最近の変更
メディアマネージャー
サイトマップ
ログイン
>
最近の変更
メディアマネージャー
サイトマップ
現在位置:
Dokuwiki.fl8.jp
»
06_virtualization
»
05_container
»
08 docker-compose Nginx
トレース:
•
43 Laravel APIトークン名(api_token)を変更
•
24 Ceph OSD 追加
•
08 vzabackup
•
28 Ceph Mon 追加
•
nrpeで監視
•
60 Apacheが起動しない AH01760
•
05 上の階層からimport
06_virtualization:05_container:08_docker_compose_nginx
この文書は読取専用です。文書のソースを閲覧することは可能ですが、変更はできません。もし変更したい場合は管理者に連絡してください。
====== 08 docker-compose Nginx ====== Nginxを動かすだけの[[06_virtualization:05_container:02_dcoker_composer|docker-compose]] ===== Simple Nginx ===== <code|docker-compose.yml> --- version: '3' services: nginx: image: nginx:latest ports: - "8080:80" volumes: - ./public:/usr/share/nginx/html </code> ===== Nginx + SSL ===== <code|docker-compose.yml> --- version: "2.1" services: https-portal: image: steveltn/https-portal:1 ports: - '80:80' - '443:443' links: - web #restart: always restart: unless-stopped environment: DOMAINS: 'testwiki.hogehoge.com -> http://web' STAGE: 'local' #STAGE: 'production' #FORCE_RENEW: 'true' volumes: - ./docker/web/:/etc/nginx/conf.d/ web: image: nginx:1.15.6 #ports: #- '8000:80' volumes: - ./nginx/conf.d:/etc/nginx/conf.d - ./nginx/html:/var/www/html </code> ==== フォルダ/ファイル用意 ==== <code> mkdir -p nginx/conf.d mkdir -p nginx/html hostname > nginx/html/index.html cat << __EOM__ server { listen 80; server_name localhost; #charset koi8-r; #access_log /var/log/nginx/host.access.log main; location / { root /var/www/html; index index.html index.htm; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root /var/www/html; } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } __EOM__ </code> <code> # tree -l /app /app ├── docker │ └── web ├── docker-compose.yml └── nginx ├── conf.d │ └── default.conf └── html └── index.html </code> ==== 起動 ==== docker-compose up -d {{tag>docker-compose docker}}
06_virtualization/05_container/08_docker_compose_nginx.txt
· 最終更新: 2022/04/08 01:12 by
matsui
ページ用ツール
文書の表示
以前のリビジョン
バックリンク
文書の先頭へ