I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| ## You may choose to remove --recursive if is required only for the bucket or folder and not for objects within. | |
| s3cmd setacl --acl-private --recursive s3://mybucket-name | |
| s3cmd setacl --acl-private --recursive s3://mybucket-name/folder-name | |
| s3cmd setacl --acl-private --recursive s3://mybucket-name/folder-name/object-name | |
| s3cmd setacl --acl-public --recursive s3://mybucket-name | |
| s3cmd setacl --acl-public --recursive s3://mybucket-name/folder-name | |
| s3cmd setacl --acl-public --recursive s3://mybucket-name/folder-name/object-name |
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| hyperTabs: { | |
| trafficButtons: true, | |
| border: false, | |
| tabIconsColored: true, |
| {"lastUpload":"2020-12-28T03:18:11.875Z","extensionVersion":"v3.4.3"} |
| // set-up a connection between the client and the server | |
| var socket = io.connect(); | |
| // let's assume that the client page, once rendered, knows what room it wants to join | |
| var room = "abc123"; | |
| socket.on('connect', function() { | |
| // Connected, let's sign-up for to receive messages for this room | |
| socket.emit('room', room); | |
| }); |
| #define rgbFadeDelay 30 | |
| #define redPin 11 | |
| #define greenPin 10 | |
| #define bluePin 9 | |
| void setup() { | |
| // Start off with the LED off. | |
| setColourRgb(0,0,0); | |
| } |
| #!/bin/bash | |
| ND_VERSION=8.12.0 | |
| ND_FILE=node-v$ND_VERSION-linux-x64.tar.gz | |
| function download { | |
| wget https://nodejs.org/dist/v$ND_VERSION/$ND_FILE && sudo tar -C /usr/local --strip-components 1 -xzf $ND_FILE && rm $ND_FILE | |
| } | |
| PS3='Please choose platform: ' |
| private static func createUserEventData(user:SKUser, eventType:SKEventType, sticker:Sticker?) { | |
| // server endpoint | |
| let endpoint = "https://app.stickerkit.io/userEvent/v1/\(user.projectID)" | |
| guard let endpointUrl = URL(string: endpoint) else { | |
| return nil | |
| } | |
| //Make JSON to send to send to server |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| proxy_buffer_size 64k; | |
| proxy_buffers 4 128k; | |
| proxy_busy_buffers_size 128k; |
| sudo easy_install -U gevent==1.1b4 |