Apache:SSL Origin Cloudflare: Difference between revisions
Appearance
Created page with "*Buatlah folder di <code>/etc/apache2/ssl/</code> <syntaxhighlight lang="bash"> mkdir /etc/apache2/ssl/ </syntaxhighlight> *Selanjutnya buat file <code>fullchain.pem</code> didalam folder tersebut <syntaxhighlight lang="bash"> vim /etc/apache2/ssl/fullchain.pem </syntaxhighlight> *Isikan Origin sertifikat dan RSA root Cloudflare *Buat file privkey.pem didalam folder <code>/etc/apache2/ssl/</code> dengan nama <code>privkey.pem</code> <syntaxhighlight lang="bash"> vim..." |
No edit summary |
||
| Line 30: | Line 30: | ||
* Contoh Virtual host | * Contoh Virtual host | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="apacheconf"> | ||
ServerAdmin webmaster@domain.com | ServerAdmin webmaster@domain.com | ||
DocumentRoot /var/www/html/ | DocumentRoot /var/www/html/ | ||
| Line 50: | Line 50: | ||
CustomLog /var/log/apache2/domain.com_access common | CustomLog /var/log/apache2/domain.com_access common | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Server]] | |||
[[Category:Apache]] | |||
[[Category:Tutorial]] | |||
[[Category:Linux]] | |||
[[Category:Ubuntu]] | |||
Revision as of 18:44, 23 November 2022
- Buatlah folder di
/etc/apache2/ssl/
mkdir /etc/apache2/ssl/
- Selanjutnya buat file
fullchain.pemdidalam folder tersebut
vim /etc/apache2/ssl/fullchain.pem
- Isikan Origin sertifikat dan RSA root Cloudflare
- Buat file privkey.pem didalam folder
/etc/apache2/ssl/dengan namaprivkey.pem
vim /etc/apache2/ssl/privkey.pem
- Lalu berikan izin
sudo chmod -R 655 /etc/apache2/ssl
sudo chown -R www-data:www-data /etc/apache2/ssl
- Contoh Virtual host
ServerAdmin webmaster@domain.com
DocumentRoot /var/www/html/
ServerName domain.com
ServerAlias www.domain.com
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/fullchain.pem
SSLCertificateKeyFile /etc/apache2/ssl/privkey.pem
<Directory /var/www/html/>
Options FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/domain.com_error
CustomLog /var/log/apache2/domain.com_access common