Difference between revisions of "Main Page/owncloud"

From phurvitz
Jump to: navigation, search
(Created page with "openssl req -new -x509 -days 10000 -nodes -out /etc/ssl/localcerts/gisolo.pem -keyout /etc/ssl/localcerts/gisolo.key chmod 600 /etc/ssl/localcerts/gisolo* a2enmod ssl root...")
 
Line 1: Line 1:
 
openssl req -new -x509 -days 10000 -nodes -out /etc/ssl/localcerts/gisolo.pem -keyout /etc/ssl/localcerts/gisolo.key
 
openssl req -new -x509 -days 10000 -nodes -out /etc/ssl/localcerts/gisolo.pem -keyout /etc/ssl/localcerts/gisolo.key
 +
 
chmod 600 /etc/ssl/localcerts/gisolo*
 
chmod 600 /etc/ssl/localcerts/gisolo*
  
Line 44: Line 45:
  
 
a2enmode ssl
 
a2enmode ssl
 +
 +
a2ensite default-ssl
  
 
service apache2 reload
 
service apache2 reload

Revision as of 20:59, 13 February 2014

openssl req -new -x509 -days 10000 -nodes -out /etc/ssl/localcerts/gisolo.pem -keyout /etc/ssl/localcerts/gisolo.key

chmod 600 /etc/ssl/localcerts/gisolo*


a2enmod ssl


root@gisolo:/etc/apache2/sites-available# cat ssl <VirtualHost *:443> ServerAdmin phurvitz@uw.edu

SSLEngine On SSLCertificateFile /etc/ssl/localcerts/gisolo.pem SSLCertificateKeyFile /etc/ssl/localcerts/gisolo.key

DocumentRoot /var/www <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </Directory>

ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ <Directory "/usr/lib/cgi-bin"> AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all </Directory>

ErrorLog ${APACHE_LOG_DIR}/error.log

# Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn

CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost>

a2enmode ssl

a2ensite default-ssl

service apache2 reload