静的コンテンツ、例えば画像をS3に配置します。その画像のパスをDBに保存するときにドメインを保存しなくて、URIだけ保存しつつ表示させる方法です。 Nginx(www.exampl.net) -> CloudFront -> S3(s3.hoge.com) Nginx
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
$ sudo vi /etc/nginx/sites-enabled/homestead.test server { listen 80; listen 443 ssl http2; server_name example.net www.example.net; root "/home/vagrant/code/public"; index index.html index.htm index.php; charset utf-8; client_header_buffer_size 64k; large_client_header_buffers 4 64k; location / { try_files $uri $uri/ /index.php?$query_string; } ・・・ ●これを追加 location /images { try_files $uri @s3; } ・・・ location @s3 { return 301 https://s3.hoge.com$request_uri; } location = /favicon.ico { access_log off; log_not_found off; } location = /robots.txt { access_log off; log_not_found off; } access_log /var/log/nginx/homestead.test.log; error_log /var/log/nginx/homestead.test-error.log error; sendfile off; client_max_body_size 200M; location ~ \.php$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; fastcgi_index index.php; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_intercept_errors off; fastcgi_buffer_size 16k; fastcgi_buffers 4 16k; fastcgi_connect_timeout 3000; fastcgi_send_timeout 300; fastcgi_read_timeout 300; fastcgi_param HOSTNAME $client; } location ~ /\.ht { deny all; } location /phpmyadmin { root /usr/share; index index.php; location ~ ^/phpmyadmin.+\.php$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; fastcgi_index index.php; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } } ssl_certificate /etc/nginx/ssl/homestead.test.crt; ssl_certificate_key /etc/nginx/ssl/homestead.test.key; } |
Cloud …