首页 > 碎碎念 > golang的程序不错
作者:ghostry 发布时间:2019-05-09 浏览: 1992
转载注明出处: https://blog.1ge.fun/tucao/909.html最近在用一些新程序替换老程序,
比如caddy替换Nginx,
发现golang的程序涌现出很多,而且设计的更懒人化.
比如caddy,一个执行文件,配置你需要的内容,就可以执行了.
写配置文件时候只需要关注你想关注的部分,其他的不用管,程序自动实现.
这在Nginx是不可能的,Nginx的配置文件,不管你用到用不到,有些语句必须要写.配置文件一大堆.
但是很多时候用不上,我们只需要暴露一些静态文件,做个反代,或者接fcgi什么的.
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;
keepalive_timeout 65;
gzip on;
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
}
上面是Nginx的一个配置,用来放一些静态文件出来.
下面我们来看caddy
:80 {
gzip
tls off
root /var/www/
}
就这么简单,只需要配置你关心的部分.
我觉得,这才是程序该有的样子,用尽量少的人工实现功能.
我现在很喜欢用docker.我在dockerhub上面放了好几个image,
他们直接就能用,如果想做某些配置的话,也可以实现.
下一篇: 使用ocDownloader+aria2在nextcloud中增加磁力链,http(s),ftp,bt,YouTube 离线下载