Песочница: различия между версиями
Перейти к навигации
Перейти к поиску
KOleg (обсуждение | вклад) |
KOleg (обсуждение | вклад) |
||
Строка 11: | Строка 11: | ||
− | <syntaxhighlight lang=" | + | <syntaxhighlight lang="bash" line='line'> |
<VirtualHost *> | <VirtualHost *> | ||
DocumentRoot "c:/каталогВики" | DocumentRoot "c:/каталогВики" | ||
Строка 29: | Строка 29: | ||
</LimitExcept> | </LimitExcept> | ||
</Directory> | </Directory> | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | <syntaxhighlight lang="php" line='line'> | ||
+ | <?php | ||
+ | phpinfo(); | ||
+ | ?> | ||
</syntaxhighlight> | </syntaxhighlight> |
Версия 16:38, 3 августа 2018
1def quickSort(arr):
2 less = []
3 pivotList = []
4 more = []
5 if len(arr) <= 1:
6 return arr
7 else:
8 pass
1 <VirtualHost *>
2 DocumentRoot "c:/каталогВики"
3 ServerName имяВики.ru
4
5 Alias /w "c:/каталогВики/index.php"
6 </VirtualHost>
7 <Directory "c:/каталогВики">
8 Options FollowSymLinks
9 AllowOverride All
10 DirectoryIndex index.php
11
12 Order allow,deny
13 Allow from all
14 <LimitExcept GET POST>
15 Deny from all
16 </LimitExcept>
17 </Directory>
1<?php
2phpinfo();
3?>