Kilho.net

Tag: Server Configuration

IT

SSH Port Change (CentOS)

SSHD Configuration vi /etc/ssh/sshd_config Port {port number} service sshd restart Firewall Configuration vi /etc/sysconfig/iptables -A INPUT -m state –state NEW -m tcp -p tcp –dport {port} -j ACCEPT service iptables restart * After changing the SSH port, configure the firewall…

Read more — SSH Port Change (CentOS)
IT

php.ini file settings

Check after server installation short_open_tag = On Allows you to use “<?php” and “<?”. display_errors = On Displays the error message when an error occurs while running a PHP script. (When set to off, an HTTP 500 Internal Server Error…

Read more — php.ini file settings