使用nginx的Docker镜像,在瞬间内快速建立一个静态网站
概览
如标题所述。
作为自己的备忘录留下来。
在开发过程中,当我使用file协议时遇到了Chrome。
Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https.
由于被拒绝了。
环境
操作系统: macOS
镜像使用链接: https://hub.docker.com/_/nginx/
行动
docker run --name mysite -p 8080:80 -v /fullpath/to/staticfiles:/usr/share/nginx/html:ro -d nginx
“RO” 表示 “只读”。
当前服务器已经启动了,但是如果保持现状,CSS和JS文件会被缓存,给开发带来不便。因此我们需要修改nginx的配置文件。
- まずデフォルトの設定ファイルをローカルにコピー
docker cp mysite:/etc/nginx/nginx.conf .
- 元のファイル
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
- 変更後
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
add_header Cache-Control no-cache;
sendfile off;
etag off;
if_modified_since off;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
- 変更を加えた設定ファイルを使用し、コンテナを立ち上げる
docker run --name mysite -p 8080:80 -v /fullpath/to/staticfiles:/usr/share/nginx/html:ro -v `pwd`/nginx.conf:/etc/nginx/nginx.conf:ro -d nginx
我觉得你可以尝试在/etc/nginx/conf.d目录下添加.conf文件来替换修改nginx.conf文件。实际上这样也许更好。