阿里云轻量应用服务器环境搭建-Docker部署静态网站
阿里云轻量应用服务器环境搭建-Docker部署静态网站
我这里使用的文件上传工具是
FileZilla Client
- 将本地的
newera
文件夹上传到/usr/share
目录下
- 在本地新建
Dockerfile
文件(等下也上传到/usr/share
目录下),内容如下:
# 设置基础镜像
FROM nginx
# 定义作者
MAINTAINER lexiaoyuan
# 将newera文件中的内容复制到 /usr/share/nginx/html/ 这个目录下面
COPY newera/ /usr/share/nginx/html/
COPY nginx.conf /etc/nginx/nginx.conf
RUN echo 'echo init ok!!'
- 在本地新建
nginx.conf
文件(等下也上传到/usr/share
目录下),内容如下:
worker_processes auto;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include 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 logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
client_max_body_size 20m;
server {
listen 80;
server_name www.lexiaoyuan.club;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
#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 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;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
- 将
Dockerfile
和nginx.conf
上传到/usr/share
目录下
- cd 进入share目录构建镜像
cd /usr/share
docker build -t newera:V1.0.0 .
- 运行生成成功的镜像
docker run -p 3000:80 -d --name newera 69c97374abb3 # 注意,这里的3000端口请根据自己的习惯任意指定,69c97374abb3也是根据上面构建成功的值指定
- 查看本地镜像
docker ps
- 在服务器开启3000端口访问
- 浏览器访问:http://www.lexiaoyuan.club:3000/ (这里请改用自己的域名或服务器的IP地址)
创作不易,喜欢的话加个关注点个赞,谢谢谢谢谢谢!