Today I read about how to link to archive.org videos…
Embedding archive.org videos…
Reply
Today I read about how to link to archive.org videos…
Disabled Apache2 with:
update-rc.d -f apache2 remove
According to this article:
rewrite ^/store/view/product/(.*) /store/view.jsp?product=$1 permanent;
Followed these instructions!
From The Most Common OpenSSL Commands to view a certificate:
openssl x509 -text -noout -in certificate.crt
CSR generation for PositiveSSL and PositiveSSL WildCard with Apache2/OpenSSL see: CSR Generation: Using OpenSSL (Apache w/mod_ssl, NGINX, OS X):
openssl req -nodes -newkey rsa:2048 -keyout myserver.key -out server.csr
To generate the CA bundle see this article:
cat COMODORSADomainValidationSecureServerCA.crt COMODORSAAddTrustCA.crt AddTrustExternalCARoot.crt > your_domain.ca-bundle
Found this article which said:
sudo launchctl unload /System/Library/LaunchDaemons/ssh.plist sudo launchctl load /System/Library/LaunchDaemons/ssh.plist
Found this article which said: open System Preferences, click Sharing and check Remote Login.
Today I was forced to lookup how to treat <blockquote> and <p> elements. It turns out you wrap paragraphs with blockquote, i.e.:
<blockquote><p>...</p></blockquote>
Today I had to look up all the various ways HTML might nominate a content-type and I found Character encodings in HTML over on Wikipedia which had all the answers…