Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Submitted on March 25, 2015 at 03:18 PM

Section 1 (Text)

open nginx.conf then find

# HTTPS server
#
#server {
# listen 443;
# server_name localhost;
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_timeout 5m;
# ssl_protocols SSLv2 SSLv3 TLSv1;
# ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
# ssl_prefer_server_ciphers on;
# loca
tion / {
# root html;
# index index.html index.htm;
# }
#}

change it to
:
server {
listen 443;
server_name localhost;
ssl on;
ssl_certificate sslkey/
wosign.com
.c
rt
;
(public key)
ssl_certificate_key sslkey/
wosign.com
.key;
(private key)
ssl_s
ession_timeout 5m;
ssl_protocols TLSv1
TLSv1
.1
TLSv1
.2
;
ssl_ciphers
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+EXP;
ssl_prefer_server_ciphers on;
location / {
root html;
index index.html in
dex.htm;
}
}