This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //天猫精灵自定义技能,树莓派 | |
| var express = require('express') | |
| var bodyParser = require('body-parser') | |
| var NodeRSA = require('node-rsa') | |
| var fs = require('fs') | |
| var publicKey = new NodeRSA(fs.readFileSync(__dirname+'/public_key.pem').toString('ascii')); | |
| var privateKey = new NodeRSA(fs.readFileSync(__dirname+'/private_key.pem').toString('ascii')); | |
| publicKey.setOptions({encryptionScheme: 'pkcs1'}) | |
| privateKey.setOptions({encryptionScheme: 'pkcs1'}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "2" | |
| services: | |
| transmission: | |
| image: linuxserver/transmission:arm32v7-latest | |
| container_name: transmission | |
| environment: | |
| - PUID=0 | |
| - PGID=0 | |
| - TZ=Asia/Shanghai | |
| volumes: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '2' | |
| services: | |
| timemachine: | |
| image: odarriba/timemachine-rpi | |
| container_name: timemachine | |
| restart: always | |
| network_mode: host | |
| volumes: | |
| - /etc/localtime:/etc/localtime:ro | |
| - /data:/timemachine |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| transmission: | |
| image: linuxserver/transmission | |
| privileged: false | |
| restart: "on-failure" | |
| ports: | |
| - 9091:9091 | |
| - 51413:51413 | |
| - 51413:51413/udp | |
| volumes: | |
| - /etc/localtime:/etc/localtime:ro |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "log" : { | |
| "loglevel" : "none" | |
| }, | |
| "inbound" : { | |
| "port" : 1080, | |
| "listen" : "0.0.0.0", | |
| "protocol" : "socks", | |
| "settings" : { | |
| "auth" : "noauth", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| app: | |
| image: nextcloud | |
| ports: | |
| - 80:80 | |
| external_links: | |
| - mysql_MySQL_1:mysql | |
| volumes: | |
| - /etc/localtime:/etc/localtime:ro | |
| - nextcloud:/var/www/html | |
| restart: always |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # gost配置 /opt/gost/config.json | |
| # https://github.com/ginuerzh/gost | |
| { | |
| "ServeNodes":[ | |
| "redirect://:65500" | |
| ], | |
| "ChainNodes":[ | |
| "socks://192.168.200.144:11080" | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dnscrypt-proxy: | |
| image: gists/dnscrypt-proxy | |
| ports: | |
| - "5353:5353/udp" | |
| - "5353:5353/tcp" | |
| environment: | |
| - USER=nobody | |
| - LOCAL_IP=0.0.0.0 | |
| - LOCAL_PORT=5353 | |
| - RESOLVER_IP=212.47.228.136 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gitlab: | |
| restart: always | |
| image: sameersbn/gitlab:10.4.2-1 | |
| ports: | |
| - "10022:22" | |
| - "10080:80" | |
| - "10443:443" | |
| volumes: | |
| - /etc/localtime:/etc/localtime:ro | |
| - gitlab_data:/home/git/data |