0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

httpd2.4 Apacheでもういっこ・・・あ\_(ˇωˇ」∠)_

0
Last updated at Posted at 2016-11-02

基本的におれよう覚書デス_(ˇωˇ」∠)_

コメントはしょり

/etc/httpd/conf/httpd.conf

ServerRoot "/etc/httpd"


Listen www.example.com:80
Listen www.example.com:8080

Include conf.modules.d/*.conf

User apache
Group apache

ServerAdmin root@localhost

ServerName www.example.com


<Directory />
    AllowOverride All
    Require all denied
</Directory>

<Directory "/var/www">
    AllowOverride All
    # Allow open access:
    Require all granted
</Directory>

<Directory "/var/www/laratsk/public">
    Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted
</Directory>


<Directory "/var/www/caketsk">
    Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted
</Directory>

NameVirtualHost www.example.com:80
NameVirtualHost www.example.com:8080

<VirtualHost www.example.com:80>
    ServerName www.example.com
    DocumentRoot /var/www/laratsk/public
</VirtualHost>

<VirtualHost www.example.com:8080>
    ServerName www.example.com
    DocumentRoot /var/www/caketsk
</VirtualHost>

<IfModule dir_module>
    DirectoryIndex index.html index.php
</IfModule>

<Files ".ht*">
    Require all denied
</Files>

ErrorLog "logs/error_log"

LogLevel warn

<IfModule log_config_module>
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common

    <IfModule logio_module>
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>

    CustomLog "logs/access_log" combined
</IfModule>

<IfModule alias_module>

    ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"

</IfModule>


<Directory "/var/www/cgi-bin">
    AllowOverride None
    Options None
    Require all granted
</Directory>

<IfModule mime_module>
    TypesConfig /etc/mime.types

    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz

    AddType text/html .shtml
    AddOutputFilter INCLUDES .shtml
</IfModule>

AddDefaultCharset UTF-8

<IfModule mime_magic_module>
    MIMEMagicFile conf/magic
</IfModule>

EnableSendfile on

IncludeOptional conf.d/*.conf


0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?