「모쿠모쿠회 『노비노비』#nbnbvol.4@고탄다」에서 시토리가 한 일

9827 단어 공부회

자기소개



나마에: 시토리
Twitte : @ndxbn

했던 일
  • 자신의 기사 『GCE의 무료 테두리 서버를 세울 때 초보로 빠질 것 같은 곳』 업데이트
  • GCP의 다른 무료 프레임에서 사용한 적이없는 것을 사용해 보았습니다

  • StubbyDB에 Pull Request를 발행했습니다.
  • awsome-nodejs 꽤나 Pull Reuqest에서 보인 리포지토리였기 때문에 보러 갔다.
  • 그렇다면, README가 비교적 부서진 느낌이었기 때문에, 고쳤다.


  • ndxbn/anyenv 에 shellcheck 넣으려고 죽은
  • 전에도 하려고 생각했지만, 재도전해 보고, 역시 시간도 되지 않을 것 같았기 때문에 도중에 포기했다.

  • 오늘 아침 지어진 집의 nginx 설정 파일의 고쳐
  • 의 도중에 시간 왔다.



  • 자신의 기사 수정



    『GCE의 무료 테두리 서버를 세울 때 초보로 빠질 것 같은 곳』

    일본어 이상했던 곳이 눈에 띄었으므로, 고쳤다.

    swapon 이라고 하는 설명이 없기 때문에, 그것을 추기하지 않으면 안 된다고 생각했지만, 손을 붙일 수 없었다.

    GCP를 사용한 적이없는 무료 프레임을 사용해 보았습니다.



    『GCE의 무료 프레임 서버를 세울 때 초보로 빠질 것 같은 곳』 다음에, 「GCP 무료」관련 기사의 재료 찾기.
  • Google App Engine
  • Google Stackdrive
  • Google Cloud Function

  • 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까지 방치되어 유지 보수되지 않습니다.
  • 소유자에게 "유지하지 않기 때문에 권한이야"라고 말했다.
  • "구체적으로 어떤 풀 요청을 병합해야합니까?"] ((https://twitter.com/riywo/status/967643652120981506)라는 답변
  • 보기 때문에 '멘테 할 생각이 없다', '멘테를 인계할 생각도 없다'라는 최악의 패턴이었기 때문에 포크처


    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
        }
    }
    

    이상

  • 좋은 웹페이지 즐겨찾기