「모쿠모쿠회 『노비노비』#nbnbvol.4@고탄다」에서 시토리가 한 일
9827 단어 공부회
자기소개
나마에: 시토리
Twitte : @ndxbn
했던 일
StubbyDB에 Pull Request를 발행했습니다.
ndxbn/anyenv 에 shellcheck 넣으려고 죽은
자신의 기사 수정
『GCE의 무료 테두리 서버를 세울 때 초보로 빠질 것 같은 곳』
일본어 이상했던 곳이 눈에 띄었으므로, 고쳤다.
swapon 이라고 하는 설명이 없기 때문에, 그것을 추기하지 않으면 안 된다고 생각했지만, 손을 붙일 수 없었다.
GCP를 사용한 적이없는 무료 프레임을 사용해 보았습니다.
『GCE의 무료 프레임 서버를 세울 때 초보로 빠질 것 같은 곳』 다음에, 「GCP 무료」관련 기사의 재료 찾기.
Cloud Function이란 단독으로 사용할 수 있었고, 곧바로 재료로 할 수 있을 것 같은 것은 발견되지 않았다.
App Engine과 Cloud Function과 Cloud Datastore를 결합한 느낌의 애플리케이션에서도 만들고 기사로 할까.
StubbyDB에 Pull Request
README 의 header (
## 見出し2
) 의 신택스가 효과가 없는 것을 고쳤다.htps : // 기주 b. 코 m / 나츠라 텐테 센세 / S 츠 by DB / 푸 l / 1
어쩐지 awesome 를 보고, 도착했다.
awesome-nodejs 의 Pull Request 경유일까?
StubbyDB 에 Pull Request 였다 (후일담)
결국, 「이관한, 이 리포지토리는 메인트 되어 있지 않다」라고 하는 주의서를 간과해, Pull Requeste 자체는 Close 되었다.
"유지하지 않았다면, Archive하자"라고 제안하면, "그렇게 해 ww"라고 대답 와서, 이관전의 리포지토리는 Archive 되었다.
ndxbn/anyenv 에 shellcheck 넣으려고 죽은
anyenv에 대해 그렇게 한 일
피네 씨 에 「대부분의 사람은 단순히 시간내만이고, 말하자면 콜라보레이터에 넣어주지 말라」라고 말해졌으므로, 연락해 보았다.
riywo/anyenv(본가 분)이 Pull Request 또는 Close 할 수있는 ISSUE까지 방치되어 유지 보수되지 않습니다.
anyenv 정보
덧붙여서, anyenv.org 되는 것도 있는 것 같지만 이쪽은 완전히 다른 사람이 한 사람 에 사용될 예정이었다(?) 같다. (안의 정방치되어 있다.)
오늘 아침 지어진 집의 nginx 설정 파일 수정
yum install nginx && certbot certonly --nginx
했을 뿐의 상태였으므로, 고쳤다.before
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
# * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
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;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
server {
server_name www.ndxbn.tokyo;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
listen [::]:443 ssl ipv6only=on; # managed by Certbot
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/www.ndxbn.tokyo/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/www.ndxbn.tokyo/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
}
# Settings for a TLS enabled server.
#
# server {
# listen 443 ssl http2 default_server;
# listen [::]:443 ssl http2 default_server;
# server_name _;
# root /usr/share/nginx/html;
#
# ssl_certificate "/etc/pki/nginx/server.crt";
# ssl_certificate_key "/etc/pki/nginx/private/server.key";
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 10m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
#
# # Load configuration files for the default server block.
# include /etc/nginx/default.d/*.conf;
#
# location / {
# }
#
# error_page 404 /404.html;
# location = /40x.html {
# }
#
# error_page 500 502 503 504 /50x.html;
# location = /50x.html {
# }
# }
server {
if ($host = www.ndxbn.tokyo) {
return 301 https://$host$request_uri;
} # managed by Certbot
listen 80 default_server;
listen [::]:80 default_server;
server_name www.ndxbn.tokyo;
return 404; # managed by Certbot
}}
after
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
# * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
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;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
server {
server_name www.ndxbn.tokyo;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
listen [::]:443 ssl ipv6only=on; # managed by Certbot
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/www.ndxbn.tokyo/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/www.ndxbn.tokyo/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.ndxbn.tokyo) {
return 301 https://$host$request_uri;
} # managed by Certbot
listen 80 default_server;
listen [::]:80 default_server;
server_name www.ndxbn.tokyo;
return 404; # managed by Certbot
}
}
이상
Reference
이 문제에 관하여(「모쿠모쿠회 『노비노비』#nbnbvol.4@고탄다」에서 시토리가 한 일), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ndxbn/items/ed2a9f9c542326e33e3c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)