Last active
November 21, 2020 06:18
-
-
Save reidsneo/47b5bb472e8ac449196f07a804670b3b to your computer and use it in GitHub Desktop.
Server Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:443> | |
ServerName localhost | |
ServerAlias localhost | |
ServerAdmin webmaster@localhost | |
DocumentRoot "/var/www/html/neoblackant.com/public" | |
SSLEngine on | |
SSLCertificateFile /etc/pki/tls/certs/certificate.pem | |
SSLCertificateKeyFile /etc/pki/tls/certs/certificatekey.pem | |
<Directory /var/www/html/neoblackant.com/public> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
allow from all | |
</Directory> | |
ErrorLog /var/log/httpd/neoblackant.com-error.log | |
CustomLog /var/log/httpd/neoblackant.com-access.log combined | |
</VirtualHost> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GRANT ALL ON *.* TO 'root'@'%' IDENTIFIED BY 'J8d6uiIpHsu' WITH GRANT OPTION; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment