Difference between revisions of "Apache"

From Wasya Wiki
Jump to: navigation, search
(Created page with "<pre> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from all </Directory> </pre>")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
* See also [[ certbot ]]
 +
 +
= install =
 +
== webdav ==
 +
  a2enmod dav
 +
 +
  certbot certonly --apache -d webdav2.wasya.co --http-01-port=8081
 +
 +
= use =
 
<pre>
 
<pre>
 
<Directory /var/www/>
 
<Directory /var/www/>

Latest revision as of 23:00, 27 September 2024

install

webdav

 a2enmod dav
 certbot certonly --apache -d webdav2.wasya.co --http-01-port=8081

use

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