質問編集履歴

1

httpd-myconf.conf

2018/08/15 16:26

投稿

j-suzuki
j-suzuki

スコア50

test CHANGED
File without changes
test CHANGED
@@ -153,3 +153,53 @@
153
153
  </VirtualHost>
154
154
 
155
155
  ```
156
+
157
+ httpd-myconf.conf
158
+
159
+ ```
160
+
161
+ <VirtualHost *:80>
162
+
163
+
164
+
165
+ ServerName suzunet.info
166
+
167
+
168
+
169
+ serverAlias mail.suzunet.info
170
+
171
+
172
+
173
+ DirectoryIndex index.html index.php index.cgi
174
+
175
+ #AddDefaultCharset UTF-8
176
+
177
+ DocumentRoot /var/www/html
178
+
179
+ <Directory "/var/www/html">
180
+
181
+ AllowOverride All
182
+
183
+ Options All
184
+
185
+ AddHandler cgi-script .cgi .pl
186
+
187
+ Options FollowSymLinks
188
+
189
+ Require all granted
190
+
191
+ </Directory>
192
+
193
+
194
+
195
+ #TraceEnable off
196
+
197
+
198
+
199
+ </VirtualHost>
200
+
201
+
202
+
203
+
204
+
205
+ ```