$ curl -sS https://getcomposer.org/installer | php
$ sudo mv composer.phar /usr/local/bin/composer
개인 일상, 내가 까먹어서 적는 개발 노트, 각종 리스트들
$ curl -sS https://getcomposer.org/installer | php
$ sudo mv composer.phar /usr/local/bin/composer
$ sudo vi /etc/httpd/conf/httpd.conf
/IfModule>
<IfModule dir_module>
DirectoryIndex index.php index.html
<
<IfModule mime_module>
#
#
TypesConfig /etc/mime.types
#
#
#AddType application/x-gzip .tgz
#
#
#AddEncoding x-compress .Z
#AddEncoding x-gzip .gz .tgz
#
#
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType application/x-httpd-php .php .php3 .html .htm
AddType application/x-httpd-php-source .phps
#
#
#
#AddHandler cgi-script .cgi
#AddHandler type-map var
#
#
#
AddType text/html .shtml .html
AddOutputFilter INCLUDES .shtml
</IfModule>
$ sudo systemctl restart httpd
then edit your httpd.conf.
$ sudo vi /etc/httpd/conf/httpd.conf
<IfModule mime_module>
.
.
.
AddType text/html .html
</IfModule>
$ sudo service httpd restart