docker部署Nginx服务
Nginx服务docker部署时,可以使用一下compose文件进行简单部署:
version: '3.7'
services:
nginx:
image: nginx:1.23.3-alpine
volumes:
- ./default.conf:/etc/nginx/conf.d/default.conf
ports:
- 8080:80
container_name: nginx
Nginx加载静态图片
在conf.d/default.conf
中直接配置即可:
location /static/ {
alias /static/;
autoindex on;
}
autoindex是否自动创建索引
Nginx启用http2
ngx_http_v2_module模块提供HTTP/2支持。如果从源码构建Nginx,默认是不支持此模块的,需要在编译时使用--with-http_v2_module
参数。
Nginx服务要支持http2服务,可以在conf.d/default.conf
中的listen
中添加http2以启用http2支持:
server {
listen 443 ssl http2;
ssl_certificate server.crt;
ssl_certificate_key server.key;
}
要使用http2,还需要同时启用ssl服务
1.19.1之前的版本不支持http2
声明:本作品采用署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)进行许可,使用时请注明出处。
Author: mengbin92
Github: mengbin92
cnblogs: 恋水无意