-
Published Answer
This article explains the solution for my question:
How To Avoid SSL Certificate Mismatch Errors When Redirecting Multiple Virtu…
•
By
velizarn
-
Published Question
Hello,
I want to setup my Apache 2.4 server in a way to redirect all requests in following way:
http://domainname.tld/ to http://www.domainname.tld/
and
https://domainname.tld/ to https://www.domainname.tld/
my vhost...
1
•
•
By
velizarn
Apache
LAMP Stack
Configuration Management
System Tools
CentOS
-
Published Question
Hello,
I'm trying top setup following droplet configuration
droplet1 - webserver, public access
droplet2 - db server, no apache, no php, no public access
I have following iptables settings on my db server droplet:
su...
Accepted Answer:
By default, MySQL does not listen for remote connections. In order to enable this you need to modify your /etc/mysql/my.cnf file so that bind_address reads
bind-address = <^>private_ip<^>
2
•
•
By
velizarn
MySQL
Security
Configuration Management
-
Published Question
Hello,
I followed this tutorial and now my iptables configurations has following rules:
sudo iptables -A INPUT -p tcp --tcp-flags ALL NONE -j DROP
sudo iptables -A INPUT -p tcp ! --syn -m state --state NEW -j DROP
s...
1
•
•
By
velizarn
Security
Firewall
Networking
System Tools
CentOS