ggacheck ├── DEBIAN │ └── control └── usr └── local └── bin └── ggacheck
其中 DEBIAN/control 是用来描述软件包的元数据的文件,其内容如下:
Package: ggacheck Version: 1.0 Architecture: all Maintainer: zsk <zhangshaokun12138@163.com> Depends: bash (>= 4.0) Installed-Size: 10 Section: base Priority: optional Homepage: https://www.zsk-crs.top Description: A tool to check the consistency and age of GGA statements
# Default server configuration # server { listen 80 default_server; listen [::]:80 default_server; root /var/www/hexo; server_name _; location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. try_files $uri $uri/ =404; } location /aptrepo { alias /var/www/aptrepo/; autoindex on; autoindex_exact_size off; autoindex_localtime on; } }
server { root /var/www/hexo; location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. try_files $uri $uri/ =404; } location /aptrepo { alias /var/www/aptrepo/; autoindex on; autoindex_exact_size off; autoindex_localtime on; } listen [::]:443 ssl ipv6only=on; # managed by Certbot listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/zsk-crs.top/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/zsk-crs.top/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }
server { if ($host = zsk-crs.top) { return 301 https://$host$request_uri; } # managed by Certbot listen 80 ; listen [::]:80 ; server_name zsk-crs.top; return 404; # managed by Certbot }
server { root /var/www/hexo; location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. try_files $uri $uri/ =404; } location /aptrepo { alias /var/www/aptrepo/; autoindex on; autoindex_exact_size off; autoindex_localtime on; }
listen [::]:443 ssl; # managed by Certbot listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/zsk-crs.top/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/zsk-crs.top/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server { if ($host = www.zsk-crs.top) { return 301 https://$host$request_uri; } # managed by Certbot