Advertisement
Guest User

Untitled

a guest
Aug 16th, 2012
1,667
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 99.32 KB | None | 0 0
  1. # Greek Hacking Scene * Macedonian Hackers GHS
  2. # Ελληνική Χάκινγκ Σκηνή. * Μακεδόνες Χάκερς ΕΧΣ
  3. # Грчка Хакерска Сцена. * Македонски Хакери ГХС
  4.  
  5. # Macedonia is one and is Greek
  6. # Η Μακεδονία είναι μία και είναι Ελληνική.
  7. # Македониа е една и Грчка.
  8.  
  9.  
  10. &2012&ΧΑCΚΕD& SERVER: VMRO-DPMNE .ORG .MK
  11. % HTTPD.conf
  12.  
  13.  
  14.  
  15. #
  16. # This is the main Apache server configuration file. It contains the
  17. # configuration directives that give the server its instructions.
  18. # See <URL:http://httpd.apache.org/docs/2.2/> for detailed information.
  19. # In particular, see
  20. # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
  21. # for a discussion of each configuration directive.
  22. #
  23. #
  24. # Do NOT simply read the instructions in here without understanding
  25. # what they do. They're here only as hints or reminders. If you are unsur
  26. # consult the online docs. You have been warned.
  27. #
  28. # The configuration directives are grouped into three basic sections:
  29. # 1. Directives that control the operation of the Apache server process as a
  30. # whole (the 'global environment').
  31. # 2. Directives that define the parameters of the 'main' or 'default' server,
  32. # which responds to requests that aren't handled by a virtual host.
  33. # These directives also provide default values for the settings
  34. # of all virtual hosts.
  35. # 3. Settings for virtual hosts, which allow Web requests to be sent to
  36. # different IP addresses or hostnames and have them handled by the
  37. # same Apache server process.
  38. #
  39. # Configuration and logfile names: If the filenames you specify for many
  40. # of the server's control files begin with "/" (or "drive:/" for Win32), the
  41. # server will use that explicit path. If the filenames do *not* begin
  42. # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
  43. # with ServerRoot set to "/etc/httpd" will be interpreted by the
  44. # server as "/etc/httpd/logs/foo.log".
  45. #
  46.  
  47. ### Section 1: Global Environment
  48. #
  49. # The directives in this section affect the overall operation of Apache,
  50. # such as the number of concurrent requests it can handle or where it
  51. # can find its configuration files.
  52. #
  53.  
  54. #
  55. # Don't give away too much information about all the subcomponents
  56. # we are running. Comment out this line if you don't mind remote sites
  57. # finding out what major optional modules you are running
  58. ServerTokens Prod
  59.  
  60. #
  61. # ServerRoot: The top of the directory tree under which the server's
  62. # configuration, error, and log files are kept.
  63. #
  64. # NOTE! If you intend to place this on an NFS (or otherwise network)
  65. # mounted filesystem then please read the LockFile documentation
  66. # (available at <URL:http://httpd.apache.org/docs/2.2/mod/mpm_common.html#lockfile>);
  67. # you will save yourself a lot of trouble.
  68. #
  69. # Do NOT add a slash at the end of the directory path.
  70. #
  71. ServerRoot "/etc/httpd"
  72.  
  73. #
  74. # PidFile: The file in which the server should record its process
  75. # identification number when it starts.
  76. #
  77. PidFile run/httpd.pid
  78.  
  79. #
  80. # Timeout: The number of seconds before receives and sends time out.
  81. #
  82. TimeOut 120
  83.  
  84. #
  85. # KeepAlive: Whether or not to allow persistent connections (more than
  86. # one request per connection). Set to "Off" to deactivate.
  87. #
  88. KeepAlive on
  89. #
  90. #Dodadeno na 24.06.2010 za isklucuvanje na trace-ot na apacheto
  91. TraceEnable off
  92. #
  93. # MaxKeepAliveRequests: The maximum number of requests to allow
  94. # during a persistent connection. Set to 0 to allow an unlimited amount.
  95. # We recommend you leave this number high, for maximum performance.
  96. #
  97. MaxKeepAliveRequests 100
  98.  
  99. #
  100. # KeepAliveTimeout: Number of seconds to wait for the next request from the
  101. # same client on the same connection.
  102. #
  103. KeepAliveTimeout 15
  104.  
  105. ##
  106. ## Server-Pool Size Regulation (MPM specific)
  107. ##
  108.  
  109. # prefork MPM
  110. # StartServers: number of server processes to start
  111. # MinSpareServers: minimum number of server processes which are kept spare
  112. # MaxSpareServers: maximum number of server processes which are kept spare
  113. # ServerLimit: maximum value for MaxClients for the lifetime of the server
  114. # MaxClients: maximum number of server processes allowed to start
  115. # MaxRequestsPerChild: maximum number of requests a server process serves
  116. <IfModule prefork.c>
  117. StartServers 10
  118. MinSpareServers 10
  119. MaxSpareServers 20
  120. ServerLimit 256
  121. #MaxClients 256 smeneto na 07.05.2010
  122. MaxClients 159
  123. MaxRequestsPerChild 4000
  124. </IfModule>
  125.  
  126. # worker MPM
  127. # StartServers: initial number of server processes to start
  128. # MaxClients: maximum number of simultaneous client connections
  129. # MinSpareThreads: minimum number of worker threads which are kept spare
  130. # MaxSpareThreads: maximum number of worker threads which are kept spare
  131. # ThreadsPerChild: constant number of worker threads in each server process
  132. # MaxRequestsPerChild: maximum number of requests a server process serves
  133. <IfModule worker.c>
  134. StartServers 2
  135. MaxClients 255
  136. MinSpareThreads 25
  137. MaxSpareThreads 75
  138. ThreadsPerChild 25
  139. MaxRequestsPerChild 0
  140. </IfModule>
  141.  
  142. #
  143. # Listen: Allows you to bind Apache to specific IP addresses and/or
  144. # ports, in addition to the default. See also the <VirtualHost>
  145. # directive.
  146. #
  147. # Change this to Listen on specific IP addresses as shown below to
  148. # prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
  149. #
  150. #Listen 12.34.56.78:80
  151. Listen *:80
  152.  
  153. #
  154. # Dynamic Shared Object (DSO) Support
  155. #
  156. # To be able to use the functionality of a module which was built as a DSO you
  157. # have to place corresponding `LoadModule' lines at this location so the
  158. # directives contained in it are actually available _before_ they are used.
  159. # Statically compiled modules (those listed by `httpd -l') do not need
  160. # to be loaded here.
  161. #
  162. # Example:
  163. # LoadModule foo_module modules/mod_foo.so
  164. #
  165. LoadModule auth_basic_module modules/mod_auth_basic.so
  166. #LoadModule auth_digest_module modules/mod_auth_digest.so
  167. LoadModule authn_file_module modules/mod_authn_file.so
  168. LoadModule authn_alias_module modules/mod_authn_alias.so
  169. #LoadModule authn_anon_module modules/mod_authn_anon.so
  170. #LoadModule authn_dbm_module modules/mod_authn_dbm.so
  171. LoadModule authn_default_module modules/mod_authn_default.so
  172. LoadModule authz_host_module modules/mod_authz_host.so
  173. LoadModule authz_user_module modules/mod_authz_user.so
  174. LoadModule authz_owner_module modules/mod_authz_owner.so
  175. LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
  176. LoadModule authz_dbm_module modules/mod_authz_dbm.so
  177. LoadModule authz_default_module modules/mod_authz_default.so
  178. LoadModule ldap_module modules/mod_ldap.so
  179. LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
  180. LoadModule include_module modules/mod_include.so
  181. LoadModule log_config_module modules/mod_log_config.so
  182. LoadModule logio_module modules/mod_logio.so
  183. LoadModule env_module modules/mod_env.so
  184. LoadModule ext_filter_module modules/mod_ext_filter.so
  185. LoadModule mime_magic_module modules/mod_mime_magic.so
  186. #LoadModule expires_module modules/mod_expires.so
  187. LoadModule deflate_module modules/mod_deflate.so
  188. LoadModule headers_module modules/mod_headers.so
  189. LoadModule usertrack_module modules/mod_usertrack.so
  190. LoadModule setenvif_module modules/mod_setenvif.so
  191. LoadModule mime_module modules/mod_mime.so
  192. LoadModule dav_module modules/mod_dav.so
  193. #LoadModule status_module modules/mod_status.so
  194. #podolu linijata e napravena na 29092010
  195. LoadModule autoindex_module modules/mod_autoindex.so
  196. #LoadModule info_module modules/mod_info.so
  197. LoadModule dav_fs_module modules/mod_dav_fs.so
  198. LoadModule vhost_alias_module modules/mod_vhost_alias.so
  199. LoadModule negotiation_module modules/mod_negotiation.so
  200. LoadModule dir_module modules/mod_dir.so
  201. LoadModule actions_module modules/mod_actions.so
  202. #LoadModule speling_module modules/mod_speling.so
  203. #LoadModule userdir_module modules/mod_userdir.so
  204. LoadModule alias_module modules/mod_alias.so
  205. LoadModule rewrite_module modules/mod_rewrite.so
  206. #LoadModule proxy_module modules/mod_proxy.so
  207. #LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
  208. #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
  209. #LoadModule proxy_http_module modules/mod_proxy_http.so
  210. #LoadModule proxy_connect_module modules/mod_proxy_connect.so
  211. LoadModule cache_module modules/mod_cache.so
  212. #LoadModule suexec_module modules/mod_suexec.so
  213. LoadModule disk_cache_module modules/mod_disk_cache.so
  214. LoadModule file_cache_module modules/mod_file_cache.so
  215. LoadModule mem_cache_module modules/mod_mem_cache.so
  216. LoadModule cgi_module modules/mod_cgi.so
  217. LoadModule version_module modules/mod_version.so
  218.  
  219. #
  220. # The following modules are not loaded by default:
  221. #
  222. #LoadModule cern_meta_module modules/mod_cern_meta.so
  223. #LoadModule asis_module modules/mod_asis.so
  224.  
  225. #
  226. # Load config files from the config directory "/etc/httpd/conf.d".
  227. #
  228. Include conf.d/*.conf
  229.  
  230. #
  231. # ExtendedStatus controls whether Apache will generate "full" status
  232. # information (ExtendedStatus On) or just basic information (ExtendedStatus
  233. # Off) when the "server-status" handler is called. The default is Off.
  234. #
  235. #ExtendedStatus On
  236. <IfModule mod_security2.c>
  237. SecRuleEngine On
  238. SecRule HTTP_Transfer-Encoding "!^$"
  239. </IfModule>
  240. #
  241. # If you wish httpd to run as a different user or group, you must run
  242. # httpd as root initially and it will switch.
  243. #
  244. # User/Group: The name (or #number) of the user/group to run httpd as.
  245. # . On SCO (ODT 3) use "User nouser" and "Group nogroup".
  246. # . On HPUX you may not be able to use shared memory as nobody, and the
  247. # suggested workaround is to create a user www and use that user.
  248. # NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
  249. # when the value of (unsigned)Group is above 60000;
  250. # don't use Group #-1 on these systems!
  251. #
  252. User nobody
  253. Group nobody
  254.  
  255. ### Section 2: 'Main' server configuration
  256. #
  257. # The directives in this section set up the values used by the 'main'
  258. # server, which responds to any requests that aren't handled by a
  259. # <VirtualHost> definition. These values also provide defaults for
  260. # any <VirtualHost> containers you may define later in the file.
  261. #
  262. # All of these directives may appear inside <VirtualHost> containers,
  263. # in which case these default settings will be overridden for the
  264. # virtual host being defined.
  265. #
  266.  
  267. #
  268. # ServerAdmin: Your address, where problems with the server should be
  269. # e-mailed. This address appears on some server-generated pages, such
  270. # as error documents. e.g. admin@your-domain.com
  271. #
  272. ServerAdmin root@localhost
  273.  
  274. #
  275. # ServerName gives the name and port that the server uses to identify itself.
  276. # This can often be determined automatically, but we recommend you specify
  277. # it explicitly to prevent problems during startup.
  278. #
  279. # If this is not set to valid DNS name for your host, server-generated
  280. # redirections will not work. See also the UseCanonicalName directive.
  281. #
  282. # If your host doesn't have a registered DNS name, enter its IP address here.
  283. # You will have to access it by its address anyway, and this will make
  284. # redirections work in a sensible way.
  285. #
  286.  
  287. #
  288. # UseCanonicalName: Determines how Apache constructs self-referencing
  289. # URLs and the SERVER_NAME and SERVER_PORT variables.
  290. # When set "Off", Apache will use the Hostname and Port supplied
  291. # by the client. When set "On", Apache will use the value of the
  292. # ServerName directive.
  293. #
  294. UseCanonicalName off
  295.  
  296. #
  297. # DocumentRoot: The directory out of which you will serve your
  298. # documents. By default, all requests are taken from this directory, but
  299. # symbolic links and aliases may be used to point to other locations.
  300. #
  301. DocumentRoot "/hosting/wwwroot"
  302.  
  303. #
  304. # Each directory to which Apache has access can be configured with respect
  305. # to which services and features are allowed and/or disabled in that
  306. # directory (and its subdirectories).
  307. #
  308. # First, we configure the "default" to be a very restrictive set of
  309. # features.
  310. #
  311. <Directory />
  312. Options None
  313. Options FollowSymLinks
  314. AllowOverride None
  315. Deny From All
  316. </Directory>
  317.  
  318. #
  319. # Note that from this point forward you must specifically allow
  320. # particular features to be enabled - so if something's not working as
  321. # you might expect, make sure that you have specifically enabled it
  322. # below.
  323. #
  324.  
  325. #
  326. # This should be changed to whatever you set DocumentRoot to.
  327. #
  328. <Directory "/hosting/wwwroot">
  329.  
  330. #
  331. # Possible values for the Options directive are "None", "All",
  332. # or any combination of:
  333. # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
  334. #
  335. # Note that "MultiViews" must be named *explicitly* --- "Options All"
  336. # doesn't give it to you.
  337. #
  338. # The Options directive is both complicated and important. Please see
  339. # http://httpd.apache.org/docs/2.2/mod/core.html#options
  340. # for more information.
  341. # Options All
  342.  
  343. # Options Indexes FollowSymLinks
  344.  
  345. Options -FollowSymLinks -Includes -MultiViews -Indexes
  346.  
  347. #
  348. # AllowOverride controls what directives may be placed in .htaccess files.
  349. # It can be "All", "None", or any combination of the keywords:
  350. # Options FileInfo AuthConfig Limit
  351. #
  352. AllowOverride None
  353.  
  354. #
  355. # Controls who can get stuff from this server.
  356. #
  357. Order allow,deny
  358. Allow from all
  359. <LimitExcept GET POST>
  360. deny from all
  361. </LimitExcept>
  362. </Directory>
  363. #dodadeno na 18072006 preporaka od CSS merka 17
  364. LimitRequestBody 104857600
  365. LimitRequestFields 40
  366. LimitRequestFieldsize 1000
  367. LimitRequestline 1000
  368. #
  369. #
  370. # UserDir: The name of the directory that is appended onto a user's home
  371. # directory if a ~user request is received.
  372. #
  373. # The path to the end user account 'public_html' directory must be
  374. # accessible to the webserver userid. This usually means that ~userid
  375. # must have permissions of 711, ~userid/public_html must have permissions
  376. # of 755, and documents contained therein must be world-readable.
  377. # Otherwise, the client will only receive a "403 Forbidden" message.
  378. #
  379. # See also: http://httpd.apache.org/docs/misc/FAQ.html#forbidden
  380. #
  381. <IfModule mod_userdir.c>
  382. #
  383. # UserDir is disabled by default since it can confirm the presence
  384. # of a username on the system (depending on home directory
  385. # permissions).
  386. #
  387. UserDir disable
  388.  
  389. #
  390. # To enable requests to /~user/ to serve the user's public_html
  391. # directory, remove the "UserDir disable" line above, and uncomment
  392. # the following line instead:
  393. #
  394. #UserDir public_html
  395.  
  396. </IfModule>
  397.  
  398. #
  399. # Control access to UserDir directories. The following is an example
  400. # for a site where these directories are restricted to read-only.
  401. #
  402. #<Directory /home/*/public_html>
  403. # AllowOverride FileInfo AuthConfig Limit
  404. # Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
  405. # <Limit GET POST OPTIONS>
  406. # Order allow,deny
  407. # Allow from all
  408. # </Limit>
  409. # <LimitExcept GET POST OPTIONS>
  410. # Order deny,allow
  411. # Deny from all
  412. # </LimitExcept>
  413. #</Directory>
  414.  
  415. #
  416. # DirectoryIndex: sets the file that Apache will serve if a directory
  417. # is requested.
  418. #
  419. # The index.html.var file (a type-map) is used to deliver content-
  420. # negotiated documents. The MultiViews Option can be used for the
  421. # same purpose, but it is much slower.
  422. #
  423. DirectoryIndex index.html index.html.var index.htm
  424.  
  425. #
  426. # AccessFileName: The name of the file to look for in each directory
  427. # for additional configuration directives. See also the AllowOverride
  428. # directive.
  429. #
  430. AccessFileName .htaccess
  431.  
  432. #
  433. # The following lines prevent .htaccess and .htpasswd files from being
  434. # viewed by Web clients.
  435. #
  436. <Files ~ "^\.ht">
  437. Order allow,deny
  438. Deny from all
  439. </Files>
  440.  
  441. #
  442. # TypesConfig describes where the mime.types file (or equivalent) is
  443. # to be found.
  444. #
  445. TypesConfig /etc/mime.types
  446.  
  447. #
  448. # DefaultType is the default MIME type the server will use for a document
  449. # if it cannot otherwise determine one, such as from filename extensions.
  450. # If your server contains mostly text or HTML documents, "text/plain" is
  451. # a good value. If most of your content is binary, such as applications
  452. # or images, you may want to use "application/octet-stream" instead to
  453. # keep browsers from trying to display binary files as though they are
  454. # text.
  455. #
  456. DefaultType text/plain
  457.  
  458. #
  459. # The mod_mime_magic module allows the server to use various hints from the
  460. # contents of the file itself to determine its type. The MIMEMagicFile
  461. # directive tells the module where the hint definitions are located.
  462. #
  463. <IfModule mod_mime_magic.c>
  464. # MIMEMagicFile /usr/share/magic.mime
  465. MIMEMagicFile conf/magic
  466. </IfModule>
  467.  
  468. #
  469. # HostnameLookups: Log the names of clients or just their IP addresses
  470. # e.g., www.apache.org (on) or 204.62.129.132 (off).
  471. # The default is off because it'd be overall better for the net if people
  472. # had to knowingly turn this feature on, since enabling it means that
  473. # each client request will result in AT LEAST one lookup request to the
  474. # nameserver.
  475. #
  476. HostNameLookups off
  477.  
  478. #
  479. # EnableMMAP: Control whether memory-mapping is used to deliver
  480. # files (assuming that the underlying OS supports it).
  481. # The default is on; turn this off if you serve from NFS-mounted
  482. # filesystems. On some systems, turning it off (regardless of
  483. # filesystem) can improve performance; for details, please see
  484. # http://httpd.apache.org/docs/2.2/mod/core.html#enablemmap
  485. #
  486. #EnableMMAP off
  487.  
  488. #
  489. # EnableSendfile: Control whether the sendfile kernel support is
  490. # used to deliver files (assuming that the OS supports it).
  491. # The default is on; turn this off if you serve from NFS-mounted
  492. # filesystems. Please see
  493. # http://httpd.apache.org/docs/2.2/mod/core.html#enablesendfile
  494. #
  495. #EnableSendfile off
  496.  
  497. #
  498. # ErrorLog: The location of the error log file.
  499. # If you do not specify an ErrorLog directive within a <VirtualHost>
  500. # container, error messages relating to that virtual host will be
  501. # logged here. If you *do* define an error logfile for a <VirtualHost>
  502. # container, that host's errors will be logged there and not here.
  503. #
  504. ErrorLog logs/error_log
  505.  
  506. #
  507. # LogLevel: Control the number of messages logged to the error_log.
  508. # Possible values include: debug, info, notice, warn, error, crit,
  509. # alert, emerg.
  510. #
  511. LogLevel warn
  512.  
  513. #
  514. # The following directives define some format nicknames for use with
  515. # a CustomLog directive (see below).
  516. #
  517. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  518. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  519. LogFormat "%{Referer}i -> %U" referer
  520. LogFormat "%{User-agent}i" agent
  521.  
  522. # "combinedio" includes actual counts of actual bytes received (%I) and sent (%O); this
  523. # requires the mod_logio module to be loaded.
  524. LogFormat "%h %v %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" \"%{Cookie}i\"" urchin
  525.  
  526. #
  527. # The location and format of the access logfile (Common Logfile Format).
  528. # If you do not define any access logfiles within a <VirtualHost>
  529. # container, they will be logged here. Contrariwise, if you *do*
  530. # define per-<VirtualHost> access logfiles, transactions will be
  531. # logged therein and *not* in this file.
  532. #
  533. #CustomLog logs/access_log common
  534.  
  535. #
  536. # If you would like to have separate agent and referer logfiles, uncomment
  537. # the following directives.
  538. #
  539. #CustomLog logs/referer_log referer
  540. #CustomLog logs/agent_log agent
  541.  
  542. #
  543. # For a single logfile with access, agent, and referer information
  544. # (Combined Logfile Format), use the following directive:
  545. #
  546. CustomLog logs/access_log combined
  547.  
  548. #
  549. # Optionally add a line containing the server version and virtual host
  550. # name to server-generated pages (internal error documents, FTP directory
  551. # listings, mod_status and mod_info output etc., but not CGI generated
  552. # documents or custom error documents).
  553. # Set to "EMail" to also include a mailto: link to the ServerAdmin.
  554. # Set to one of: On | Off | EMail
  555. #
  556. ServerSignature off
  557.  
  558. #
  559. # Aliases: Add here as many aliases as you need (with no limit). The format is
  560. # Alias fakename realname
  561. #
  562. # Note that if you include a trailing / on fakename then the server will
  563. # require it to be present in the URL. So "/icons" isn't aliased in this
  564. # example, only "/icons/". If the fakename is slash-terminated, then the
  565. # realname must also be slash terminated, and if the fakename omits the
  566. # trailing slash, the realname must also omit it.
  567. #
  568. # We include the /icons/ alias for FancyIndexed directory listings. If you
  569. # do not use FancyIndexing, you may comment this out.
  570. #
  571. Alias /icons/ "/var/www/icons/"
  572.  
  573. <Directory "/var/www/icons">
  574. Options Indexes MultiViews
  575. AllowOverride None
  576. Order allow,deny
  577. Allow from all
  578. </Directory>
  579.  
  580. #
  581. # WebDAV module configuration section.
  582. #
  583. <IfModule mod_dav_fs.c>
  584. # Location of the WebDAV lock database.
  585. DAVLockDB /var/lib/dav/lockdb
  586. </IfModule>
  587.  
  588. #
  589. # ScriptAlias: This controls which directories contain server scripts.
  590. # ScriptAliases are essentially the same as Aliases, except that
  591. # documents in the realname directory are treated as applications and
  592. # run by the server when requested rather than as documents sent to the client.
  593. # The same rules about trailing "/" apply to ScriptAlias directives as to
  594. # Alias.
  595. #
  596. ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
  597.  
  598. #
  599. # "/var/www/cgi-bin" should be changed to whatever your ScriptAliased
  600. # CGI directory exists, if you have that configured.
  601. #
  602. <Directory "/var/www/cgi-bin">
  603. AllowOverride None
  604. Options None
  605. Order allow,deny
  606. Allow from all
  607. </Directory>
  608.  
  609. #
  610. # Redirect allows you to tell clients about documents which used to exist in
  611. # your server's namespace, but do not anymore. This allows you to tell the
  612. # clients where to look for the relocated document.
  613. # Example:
  614. # Redirect permanent /foo http://www.example.com/bar
  615.  
  616. #
  617. # Directives controlling the display of server-generated directory listings.
  618. #
  619.  
  620. #
  621. # IndexOptions: Controls the appearance of server-generated directory
  622. # listings.
  623. #
  624. IndexOptions FancyIndexing VersionSort NameWidth=*
  625.  
  626. #
  627. # AddIcon* directives tell the server which icon to show for different
  628. # files or filename extensions. These are only displayed for
  629. # FancyIndexed directories.
  630. #
  631. #vneseno na 02062006
  632. Header set X-Powered-By "ASP.NET"
  633. Header set X-AspNet-Version "1.1.4322"
  634. #
  635. #vneseno na 06062006
  636. #<LocationMatch /(scripts|cgi-local|htbin|cgibin|cgis|cgi/|win-cgi|cgi-win| finger\.pl|guestbook\.cgi|campas|files\.pl|count\.cgi)/>
  637. #deny from all
  638. #</LocationMatch>
  639. #<LocationMatch /*(\~|\.bak|\.sav|\.orig|\.old)$>
  640. #deny from all
  641. #</LocationMatch>
  642. #
  643. AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
  644.  
  645. AddIconByType (TXT,/icons/text.gif) text/*
  646. AddIconByType (IMG,/icons/image2.gif) image/*
  647. AddIconByType (SND,/icons/sound2.gif) audio/*
  648. AddIconByType (VID,/icons/movie.gif) video/*
  649.  
  650. AddIcon /icons/binary.gif .bin .exe
  651. AddIcon /icons/binhex.gif .hqx
  652. AddIcon /icons/tar.gif .tar
  653. AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
  654. AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
  655. AddIcon /icons/a.gif .ps .ai .eps
  656. AddIcon /icons/layout.gif .html .shtml .htm .pdf
  657. AddIcon /icons/text.gif .txt
  658. AddIcon /icons/c.gif .c
  659. AddIcon /icons/p.gif .pl .py
  660. AddIcon /icons/f.gif .for
  661. AddIcon /icons/dvi.gif .dvi
  662. AddIcon /icons/uuencoded.gif .uu
  663. AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
  664. AddIcon /icons/tex.gif .tex
  665. AddIcon /icons/bomb.gif core
  666.  
  667. AddIcon /icons/back.gif ..
  668. AddIcon /icons/hand.right.gif README
  669. AddIcon /icons/folder.gif ^^DIRECTORY^^
  670. AddIcon /icons/blank.gif ^^BLANKICON^^
  671.  
  672. #
  673. # DefaultIcon is which icon to show for files which do not have an icon
  674. # explicitly set.
  675. #
  676. DefaultIcon /icons/unknown.gif
  677.  
  678. #
  679. # AddDescription allows you to place a short description after a file in
  680. # server-generated indexes. These are only displayed for FancyIndexed
  681. # directories.
  682. # Format: AddDescription "description" filename
  683. #
  684. #AddDescription "GZIP compressed document" .gz
  685. #AddDescription "tar archive" .tar
  686. #AddDescription "GZIP compressed tar archive" .tgz
  687.  
  688. #
  689. # ReadmeName is the name of the README file the server will look for by
  690. # default, and append to directory listings.
  691. #
  692. # HeaderName is the name of a file which should be prepended to
  693. # directory indexes.
  694. ReadmeName README.html
  695. HeaderName HEADER.html
  696.  
  697. #
  698. # IndexIgnore is a set of filenames which directory indexing should ignore
  699. # and not include in the listing. Shell-style wildcarding is permitted.
  700. #
  701. #IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
  702. IndexIgnore *
  703. #
  704. # DefaultLanguage and AddLanguage allows you to specify the language of
  705. # a document. You can then use content negotiation to give a browser a
  706. # file in a language the user can understand.
  707. #
  708. # Specify a default language. This means that all data
  709. # going out without a specific language tag (see below) will
  710. # be marked with this one. You probably do NOT want to set
  711. # this unless you are sure it is correct for all cases.
  712. #
  713. # * It is generally better to not mark a page as
  714. # * being a certain language than marking it with the wrong
  715. # * language!
  716. #
  717. # DefaultLanguage nl
  718. #
  719. # Note 1: The suffix does not have to be the same as the language
  720. # keyword --- those with documents in Polish (whose net-standard
  721. # language code is pl) may wish to use "AddLanguage pl .po" to
  722. # avoid the ambiguity with the common suffix for perl scripts.
  723. #
  724. # Note 2: The example entries below illustrate that in some cases
  725. # the two character 'Language' abbreviation is not identical to
  726. # the two character 'Country' code for its country,
  727. # E.g. 'Danmark/dk' versus 'Danish/da'.
  728. #
  729. # Note 3: In the case of 'ltz' we violate the RFC by using a three char
  730. # specifier. There is 'work in progress' to fix this and get
  731. # the reference data for rfc1766 cleaned up.
  732. #
  733. # Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl)
  734. # English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de)
  735. # Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
  736. # Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn)
  737. # Norwegian (no) - Polish (pl) - Portugese (pt)
  738. # Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv)
  739. # Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW)
  740. #
  741. AddLanguage ca .ca
  742. AddLanguage cs .cz .cs
  743. AddLanguage da .dk
  744. AddLanguage de .de
  745. AddLanguage el .el
  746. AddLanguage en .en
  747. AddLanguage eo .eo
  748. AddLanguage es .es
  749. AddLanguage et .et
  750. AddLanguage fr .fr
  751. AddLanguage he .he
  752. AddLanguage hr .hr
  753. AddLanguage it .it
  754. AddLanguage ja .ja
  755. AddLanguage ko .ko
  756. AddLanguage ltz .ltz
  757. AddLanguage nl .nl
  758. AddLanguage nn .nn
  759. AddLanguage no .no
  760. AddLanguage pl .po
  761. AddLanguage pt .pt
  762. AddLanguage pt-BR .pt-br
  763. AddLanguage ru .ru
  764. AddLanguage sv .sv
  765. AddLanguage zh-CN .zh-cn
  766. AddLanguage zh-TW .zh-tw
  767.  
  768. #
  769. # LanguagePriority allows you to give precedence to some languages
  770. # in case of a tie during content negotiation.
  771. #
  772. # Just list the languages in decreasing order of preference. We have
  773. # more or less alphabetized them here. You probably want to change this.
  774. #
  775. LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
  776.  
  777. #
  778. # ForceLanguagePriority allows you to serve a result page rather than
  779. # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
  780. # [in case no accepted languages matched the available variants]
  781. #
  782. ForceLanguagePriority Prefer Fallback
  783.  
  784. #
  785. # Specify a default charset for all content served; this enables
  786. # interpretation of all content as UTF-8 by default. To use the
  787. # default browser choice (ISO-8859-1), or to allow the META tags
  788. # in HTML content to override this choice, comment out this
  789. # directive:
  790. #
  791. AddDefaultCharset Off
  792.  
  793. #
  794. #
  795. AddCharset ISO-8859-1 .iso8859-1 .latin1
  796. AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen
  797. AddCharset ISO-8859-3 .iso8859-3 .latin3
  798. AddCharset ISO-8859-4 .iso8859-4 .latin4
  799. AddCharset ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ru
  800. AddCharset ISO-8859-6 .iso8859-6 .latin6 .arb
  801. AddCharset ISO-8859-7 .iso8859-7 .latin7 .grk
  802. AddCharset ISO-8859-8 .iso8859-8 .latin8 .heb
  803. AddCharset ISO-8859-9 .iso8859-9 .latin9 .trk
  804. AddCharset ISO-2022-JP .iso2022-jp .jis
  805. AddCharset ISO-2022-KR .iso2022-kr .kis
  806. AddCharset ISO-2022-CN .iso2022-cn .cis
  807. AddCharset Big5 .Big5 .big5
  808. # For russian, more than one charset is used (depends on client, mostly):
  809. AddCharset WINDOWS-1251 .cp-1251 .win-1251
  810. AddCharset CP866 .cp866
  811. AddCharset KOI8-r .koi8-r .koi8-ru
  812. AddCharset KOI8-ru .koi8-uk .ua
  813. AddCharset ISO-10646-UCS-2 .ucs2
  814. AddCharset ISO-10646-UCS-4 .ucs4
  815. AddCharset UTF-8 .utf8
  816.  
  817. # The set below does not map to a specific (iso) standard
  818. # but works on a fairly wide range of browsers. Note that
  819. # capitalization actually matters (it should not, but it
  820. # does for some browsers).
  821. #
  822. # See http://www.iana.org/assignments/character-sets
  823. # for a list of sorts. But browsers support few.
  824. #
  825. AddCharset GB2312 .gb2312 .gb
  826. AddCharset utf-7 .utf7
  827. AddCharset utf-8 .utf8
  828. AddCharset big5 .big5 .b5
  829. AddCharset EUC-TW .euc-tw
  830. AddCharset EUC-JP .euc-jp
  831. AddCharset EUC-KR .euc-kr
  832. AddCharset shift_jis .sjis
  833.  
  834. #
  835. # AddType allows you to add to or override the MIME configuration
  836. # file mime.types for specific file types.
  837. #
  838. # AddType allows you to add to or override the MIME configuration
  839. # file mime.types for specific file types.
  840. #
  841. #AddType application/x-tar .tgz
  842.  
  843. #
  844. # AddEncoding allows you to have certain browsers uncompress
  845. # information on the fly. Note: Not all browsers support this.
  846. # Despite the name similarity, the following Add* directives have nothing
  847. # to do with the FancyIndexing customization directives above.
  848. #
  849. #AddEncoding x-compress .Z
  850. #AddEncoding x-gzip .gz .tgz
  851.  
  852. # If the AddEncoding directives above are commented-out, then you
  853. # probably should define those extensions to indicate media types:
  854. #
  855. AddType application/x-compress .Z
  856. AddType application/x-gzip .gz .tgz
  857.  
  858. #EMBER code
  859. AddType application/ember .ehtml
  860. Action application/ember /cgi-bin/w3e
  861. #
  862. # AddHandler allows you to map certain file extensions to "handlers":
  863. # actions unrelated to filetype. These can be either built into the server
  864. # or added with the Action directive (see below)
  865. #
  866. # To use CGI scripts outside of ScriptAliased directories:
  867. # (You will also need to add "ExecCGI" to the "Options" directive.)
  868. #
  869. #AddHandler cgi-script .cgi
  870.  
  871. #
  872. # For files that include their own HTTP headers:
  873. #
  874. #AddHandler send-as-is asis
  875.  
  876. #
  877. # For type maps (negotiated resources):
  878. # (This is enabled by default to allow the Apache "It Worked" page
  879. # to be distributed in multiple languages.)
  880. # For server-parsed imagemap files:
  881. #
  882. AddHandler imap-file map
  883.  
  884. #
  885. AddHandler type-map var
  886.  
  887. #
  888. # Filters allow you to process content before it is sent to the client.
  889. #
  890. # To parse .shtml files for server-side includes (SSI):
  891. # (You will also need to add "Includes" to the "Options" directive.)
  892. #
  893. AddType text/html .shtml
  894. AddOutputFilter INCLUDES .shtml
  895.  
  896. #
  897. # Action lets you define media types that will execute a script whenever
  898. # a matching file is called. This eliminates the need for repeated URL
  899. # pathnames for oft-used CGI file processors.
  900. # Format: Action media/type /cgi-script/location
  901. # Format: Action handler-name /cgi-script/location
  902. #
  903.  
  904. #
  905. # Customizable error responses come in three flavors:
  906. # 1) plain text 2) local redirects 3) external redirects
  907. #
  908. # Some examples:
  909. #ErrorDocument 500 "The server made a boo boo."
  910. #ErrorDocument 404 /missing.html
  911. #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
  912. #ErrorDocument 402 http://www.example.com/subscription_info.html
  913. #
  914.  
  915. #
  916. # Putting this all together, we can internationalize error responses.
  917. #
  918. # We use Alias to redirect any /error/HTTP_<error>.html.var response to
  919. # our collection of by-error message multi-language collections. We use
  920. # includes to substitute the appropriate text.
  921. #
  922. # You can modify the messages' appearance without changing any of the
  923. # default HTTP_<error>.html.var files by adding the line:
  924. #
  925. # Alias /error/include/ "/your/include/path/"
  926. #
  927. # which allows you to create your own set of files by starting with the
  928. # /var/www/error/include/ files and
  929. # copying them to /your/include/path/, even on a per-VirtualHost basis.
  930. #
  931.  
  932. Alias /error/ "/var/www/error/"
  933.  
  934. <IfModule mod_negotiation.c>
  935. <IfModule mod_include.c>
  936. <Directory "/var/www/error">
  937. AllowOverride None
  938. Options IncludesNoExec
  939. AddOutputFilter Includes html
  940. AddHandler type-map var
  941. Order allow,deny
  942. Allow from all
  943. LanguagePriority en es de fr
  944. ForceLanguagePriority Prefer Fallback
  945. </Directory>
  946.  
  947. # ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
  948. ErrorDocument 401 /error/401.cgi
  949. # ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
  950. # ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
  951. # ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
  952. # ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
  953. # ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
  954. # ErrorDocument 410 /error/HTTP_GONE.html.var
  955. # ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
  956. # ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
  957. # ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
  958. # ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
  959. # ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
  960. # ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
  961. # ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
  962. # ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
  963. # ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
  964. # ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
  965.  
  966. </IfModule>
  967. </IfModule>
  968.  
  969. #
  970. # The following directives modify normal HTTP response behavior to
  971. # handle known problems with browser implementations.
  972. #
  973. BrowserMatch "Mozilla/2" nokeepalive
  974. BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
  975. BrowserMatch "RealPlayer 4\.0" force-response-1.0
  976. BrowserMatch "Java/1\.0" force-response-1.0
  977. BrowserMatch "JDK/1\.0" force-response-1.0
  978.  
  979. #
  980. # The following directive disables redirects on non-GET requests for
  981. # a directory that does not include the trailing slash. This fixes a
  982. # problem with Microsoft WebFolders which does not appropriately handle
  983. # redirects for folders with DAV methods.
  984. # Same deal with Apple's DAV filesystem and Gnome VFS support for DAV.
  985. #
  986. #BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
  987. #BrowserMatch "MS FrontPage" redirect-carefully
  988. #BrowserMatch "^WebDrive" redirect-carefully
  989. #BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully
  990. #BrowserMatch "^gnome-vfs/1.0" redirect-carefully
  991. #BrowserMatch "^XML Spy" redirect-carefully
  992. #BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully
  993.  
  994. #ovie se od skopjanka
  995. BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
  996. BrowserMatch "^WebDrive" redirect-carefully
  997. BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
  998. BrowserMatch "^gnome-vfs" redirect-carefully
  999.  
  1000. #
  1001. # Allow server status reports generated by mod_status,
  1002. # with the URL of http://servername/server-status
  1003. # Change the ".example.com" to match your domain to enable.
  1004. #
  1005. #<Location /server-status>
  1006. # SetHandler server-status
  1007. # Order deny,allow
  1008. # Deny from all
  1009. # Allow from .example.com
  1010. #</Location>
  1011.  
  1012. #
  1013. # Allow remote server configuration reports, with the URL of
  1014. # http://servername/server-info (requires that mod_info.c be loaded).
  1015. # Change the ".example.com" to match your domain to enable.
  1016. #
  1017. #<Location /server-info>
  1018. # SetHandler server-info
  1019. # Order deny,allow
  1020. # Deny from all
  1021. # Allow from .example.com
  1022. #</Location>
  1023.  
  1024. #
  1025. # Proxy Server directives. Uncomment the following lines to
  1026. # enable the proxy server:
  1027. #
  1028. #<IfModule mod_proxy.c>
  1029. #ProxyRequests On
  1030. #
  1031. #<Proxy *>
  1032. # Order deny,allow
  1033. # Deny from all
  1034. # Allow from .example.com
  1035. #</Proxy>
  1036.  
  1037. #
  1038. # Enable/disable the handling of HTTP/1.1 "Via:" headers.
  1039. # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
  1040. # Set to one of: Off | On | Full | Block
  1041. #
  1042. #ProxyVia On
  1043.  
  1044. #
  1045. # To enable a cache of proxied content, uncomment the following lines.
  1046. # See http://httpd.apache.org/docs/2.2/mod/mod_cache.html for more details.
  1047. #
  1048. #<IfModule mod_disk_cache.c>
  1049. # CacheEnable disk /
  1050. # CacheRoot "/var/cache/mod_proxy"
  1051. #</IfModule>
  1052. #
  1053.  
  1054. #</IfModule>
  1055. # End of proxy directives.
  1056. ### Section 3: Virtual Hosts
  1057. #
  1058. # VirtualHost: If you want to maintain multiple domains/hostnames on your
  1059. # machine you can setup VirtualHost containers for them. Most configurations
  1060. # use only name-based virtual hosts so the server doesn't need to worry about
  1061. # IP addresses. This is indicated by the asterisks in the directives below.
  1062. #
  1063. # Please see the documentation at
  1064. # <URL:http://httpd.apache.org/docs/2.2/vhosts/>
  1065. # for further details before you try to setup virtual hosts.
  1066. #
  1067. # You may use the command line option '-S' to verify your virtual host
  1068. # configuration.
  1069.  
  1070. #
  1071. # Use name-based virtual hosting.
  1072. #
  1073. NameVirtualHost *
  1074. #
  1075. # NOTE: NameVirtualHost cannot be used without a port specifier
  1076. # (e.g. :80) if mod_ssl is being used, due to the nature of the
  1077. # SSL protocol.
  1078. #
  1079.  
  1080. #
  1081. # VirtualHost example:
  1082. # Almost any Apache directive may go into a VirtualHost container.
  1083. # The first VirtualHost section is used for requests without a known
  1084. # server name.
  1085. #
  1086. #<VirtualHost *:80>
  1087. # ServerAdmin webmaster@dummy-host.example.com
  1088. # DocumentRoot /www/docs/dummy-host.example.com
  1089. # ServerName dummy-host.example.com
  1090. # ErrorLog logs/dummy-host.example.com-error_log
  1091. # CustomLog logs/dummy-host.example.com-access_log common
  1092. #</VirtualHost>
  1093.  
  1094. <VirtualHost *>
  1095. DocumentRoot "/hosting/wwwroot"
  1096. ServerName bitolchanka.mt.net.mk
  1097. <Directory "/hosting/wwwroot">
  1098. allow from all
  1099. Options -Indexes
  1100. </Directory>
  1101. </VirtualHost>
  1102.  
  1103.  
  1104.  
  1105. <VirtualHost *>
  1106. DocumentRoot "/hosting/wwwroot/suerydercare.org.mk"
  1107. ServerName suerydercare.org.mk
  1108. <Directory "/hosting/wwwroot/suerydercare.org.mk">
  1109. allow from all
  1110. Options -Indexes
  1111. </Directory>
  1112. ServerAlias www.suerydercare.org.mk
  1113. </VirtualHost>
  1114. <VirtualHost *>
  1115. DocumentRoot "/hosting/wwwroot/worldconferenceohrid.kultura.gov.mk"
  1116. ServerName worldconferenceohrid.kultura.gov.mk
  1117. <Directory "/hosting/wwwroot/worldconferenceohrid.kultura.gov.mk">
  1118. allow from all
  1119. Options -Indexes
  1120. </Directory>
  1121. ServerAlias www.worldconferenceohrid.kultura.gov.mk
  1122. </VirtualHost>
  1123. <VirtualHost *>
  1124. DocumentRoot "/hosting/wwwroot/ancom.com.mk"
  1125. ServerName ancom.com.mk
  1126. <Directory "/hosting/wwwroot/ancom.com.mk">
  1127. allow from all
  1128. Options -Indexes
  1129. </Directory>
  1130. ServerAlias www.ancom.com.mk
  1131. </VirtualHost>
  1132. <VirtualHost *>
  1133. DocumentRoot "/hosting/wwwroot/smsplus.com.mk"
  1134. ServerName smsplus.com.mk
  1135. <Directory "/hosting/wwwroot/smsplus.com.mk">
  1136. allow from all
  1137. Options -Indexes
  1138. </Directory>
  1139. ServerAlias www.smsplus.com.mk
  1140. </VirtualHost>
  1141. <VirtualHost *>
  1142. DocumentRoot "/hosting/wwwroot/studentskapoliklinika.org.mk"
  1143. ServerName studentskapoliklinika.org.mk
  1144. <Directory "/hosting/wwwroot/studentskapoliklinika.org.mk">
  1145. allow from all
  1146. Options -Indexes
  1147. </Directory>
  1148. ServerAlias www.studentskapoliklinika.org.mk
  1149. </VirtualHost>
  1150. <VirtualHost *>
  1151. DocumentRoot /hosting/wwwroot/tvms.com.mk
  1152. ServerName tvms.com.mk
  1153. <Directory "/hosting/wwwroot/tvms.com.mk">
  1154. allow from all
  1155. Options -Indexes
  1156. </Directory>
  1157. ServerAlias www.tvms.com.mk
  1158. </VirtualHost>
  1159. <VirtualHost *>
  1160. DocumentRoot "/hosting/wwwroot/avtodinamika.com.mk"
  1161. ServerName avtodinamika.com.mk
  1162. <Directory "/hosting/wwwroot/avtodinamika.com.mk">
  1163. allow from all
  1164. Options -Indexes
  1165. </Directory>
  1166. ServerAlias www.avtodinamika.com.mk
  1167. </VirtualHost>
  1168. <VirtualHost *>
  1169. DocumentRoot "/hosting/wwwroot/process.com.mk"
  1170. ServerName process.com.mk
  1171. <Directory "/hosting/wwwroot/process.com.mk">
  1172. allow from all
  1173. Options -Indexes
  1174. </Directory>
  1175. ServerAlias www.process.com.mk
  1176. </VirtualHost>
  1177. <VirtualHost *>
  1178. DocumentRoot "/hosting/wwwroot/zanet-export.com.mk"
  1179. ServerName zanet-export.com.mk
  1180. <Directory "/hosting/wwwroot/zanet-export.com.mk">
  1181. allow from all
  1182. Options -Indexes
  1183. </Directory>
  1184. ServerAlias www.zanet-export.com.mk
  1185. </VirtualHost>
  1186. <VirtualHost *>
  1187. DocumentRoot "/hosting/wwwroot/inko.com.mk"
  1188. ServerName inko.com.mk
  1189. <Directory "/hosting/wwwroot/inko.com.mk">
  1190. allow from all
  1191. Options -Indexes
  1192. </Directory>
  1193. ServerAlias www.inko.com.mk
  1194. </VirtualHost>
  1195. <VirtualHost *>
  1196. DocumentRoot "/hosting/wwwroot/fbc.com.mk"
  1197. ServerName fbc.com.mk
  1198. <Directory "/hosting/wwwroot/fbc.com.mk">
  1199. allow from all
  1200. Options -Indexes
  1201. </Directory>
  1202. ServerAlias www.fbc.com.mk
  1203. </VirtualHost>
  1204. <VirtualHost *>
  1205. DocumentRoot "/hosting/wwwroot/images.unidirect.com.mk"
  1206. ServerName images.unidirect.com.mk
  1207. <Directory "/hosting/wwwroot/images.unidirect.com.mk">
  1208. allow from all
  1209. Options -Indexes
  1210. </Directory>
  1211. </VirtualHost>
  1212.  
  1213.  
  1214.  
  1215. <VirtualHost *>
  1216. DocumentRoot "/hosting/wwwroot/tvgurra.com.mk"
  1217. ServerName tvgurra.com.mk
  1218. <Directory "/hosting/wwwroot/tvgurra.com.mk">
  1219. allow from all
  1220. Options -Indexes
  1221. </Directory>
  1222. ServerAlias www.tvgurra.com.mk
  1223. </VirtualHost>
  1224. <VirtualHost *>
  1225. DocumentRoot "/hosting/wwwroot/cekorovi.com.mk"
  1226. ServerName cekorovi.com.mk
  1227. <Directory "/hosting/wwwroot/cekorovi.com.mk">
  1228. allow from all
  1229. Options -Indexes
  1230. </Directory>
  1231. ServerAlias www.cekorovi.com.mk
  1232. </VirtualHost>
  1233. <VirtualHost *>
  1234. DocumentRoot "/hosting/wwwroot/dopolni.com.mk"
  1235. ServerName dopolni.com.mk
  1236. <Directory "/hosting/wwwroot/dopolni.com.mk">
  1237. allow from all
  1238. Options -Indexes
  1239. </Directory>
  1240. ServerAlias www.dopolni.com.mk
  1241. </VirtualHost>
  1242.  
  1243. <VirtualHost *>
  1244. DocumentRoot /hosting/wwwroot/sankeram.com.mk
  1245. ServerName sankeram.com.mk
  1246. <Directory /hosting/wwwroot/sankeram.com.mk>
  1247. <IfModule mod_security2.c>
  1248. SecRuleEngine Off
  1249. </IfModule>
  1250. allow from all
  1251. Options -Indexes
  1252. Options +FollowSymLinks +SymLinksIfOwnerMatch
  1253. </Directory>
  1254. ServerAlias www.sankeram.com.mk
  1255. </VirtualHost>
  1256. <Directory /hosting/wwwroot/test.sankeram.com.mk/>
  1257. AllowOverride All
  1258. </Directory>
  1259.  
  1260. <VirtualHost *>
  1261. DocumentRoot "/hosting/wwwroot/nacionalenregistar-ami.org.mk"
  1262. ServerName nacionalenregistar-ami.org.mk
  1263. <Directory "/hosting/wwwroot/nacionalenregistar-ami.org.mk">
  1264. allow from all
  1265. Options -Indexes
  1266. </Directory>
  1267. ServerAlias www.nacionalenregistar-ami.org.mk
  1268. </VirtualHost>
  1269. <VirtualHost *>
  1270. DocumentRoot /hosting/wwwroot/svetinikole.gov.mk
  1271. ServerName svetinikole.gov.mk
  1272. <Directory "/hosting/wwwroot/svetinikole.gov.mk">
  1273. allow from all
  1274. Options -Indexes
  1275. </Directory>
  1276. ServerAlias www.svetinikole.gov.mk
  1277. </VirtualHost>
  1278. <VirtualHost *>
  1279. DocumentRoot /hosting/wwwroot/vinasa.com.mk
  1280. ServerName vinasa.com.mk
  1281. <Directory "/hosting/wwwroot/vinasa.com.mk">
  1282. allow from all
  1283. Options -Indexes
  1284. </Directory>
  1285. ServerAlias www.vinasa.com.mk
  1286. </VirtualHost>
  1287. <VirtualHost *>
  1288. DocumentRoot "/hosting/wwwroot/mobisvet.com.mk"
  1289. ServerName mobisvet.com.mk
  1290. <Directory "/hosting/wwwroot/mobisvet.com.mk">
  1291. allow from all
  1292. Options -Indexes
  1293. </Directory>
  1294. ServerAlias www.mobisvet.com.mk
  1295. </VirtualHost>
  1296.  
  1297. <VirtualHost *>
  1298. DocumentRoot /hosting/wwwroot/dom-invest.com.mk
  1299. ServerName dom-invest.com.mk
  1300. <Directory "/hosting/wwwroot/dom-invest.com.mk">
  1301. allow from all
  1302. Options -Indexes
  1303. </Directory>
  1304. ServerAlias www.dom-invest.com.mk
  1305. </VirtualHost>
  1306.  
  1307. <VirtualHost *>
  1308. DocumentRoot /hosting/wwwroot/ohridhotels.com.mk
  1309. ServerName ohridhotels.com.mk
  1310. <Directory /hosting/wwwroot/ohridhotels.com.mk>
  1311. allow from all
  1312. Options -Indexes
  1313. </Directory>
  1314. ServerAlias www.ohridhotels.com.mk
  1315. </VirtualHost>
  1316. <VirtualHost *>
  1317. DocumentRoot "/hosting/wwwroot/negotino.gov.mk"
  1318. ServerName negotino.gov.mk
  1319. <Directory "/hosting/wwwroot/negotino.gov.mk">
  1320. allow from all
  1321. Options -Indexes
  1322. </Directory>
  1323. ServerAlias www.negotino.gov.mk
  1324. </VirtualHost>
  1325.  
  1326. <VirtualHost *>
  1327. DocumentRoot /hosting/wwwroot/jhk-dzinot.edu.mk
  1328. ServerName jhk-dzinot.edu.mk
  1329. <Directory "/hosting/wwwroot/jhk-dzinot.edu.mk">
  1330. allow from all
  1331. Options -Indexes
  1332. </Directory>
  1333. ServerAlias www.jhk-dzinot.edu.mk
  1334. </VirtualHost>
  1335.  
  1336. <VirtualHost *>
  1337. DocumentRoot /hosting/wwwroot/elit.com.mk
  1338. ServerName elit.com.mk
  1339. <Directory "/hosting/wwwroot/elit.com.mk">
  1340. allow from all
  1341. Options -Indexes
  1342. </Directory>
  1343. ServerAlias www.elit.com.mk
  1344. </VirtualHost>
  1345. <VirtualHost *>
  1346. DocumentRoot /hosting/wwwroot/advenec.com.mk
  1347. ServerName advenec.com.mk
  1348. <Directory "/hosting/wwwroot/advenec.com.mk">
  1349. allow from all
  1350. Options -Indexes
  1351. </Directory>
  1352. ServerAlias www.advenec.com.mk
  1353. </VirtualHost>
  1354. <VirtualHost *>
  1355. DocumentRoot /hosting/wwwroot/roads.org.mk
  1356. <Directory "/hosting/wwwroot/roads.org.mk">
  1357. allow from all
  1358. Options -Indexes
  1359. </Directory>
  1360. ServerName roads.org.mk
  1361. ServerAlias www.roads.org.mk
  1362. </VirtualHost>
  1363. <VirtualHost *>
  1364. DocumentRoot "/hosting/wwwroot/education-see.org.mk"
  1365. ServerName education-see.org.mk
  1366. <Directory "/hosting/wwwroot/education-see.org.mk">
  1367. allow from all
  1368. Options -Indexes
  1369. </Directory>
  1370. ServerAlias www.education-see.org.mk
  1371. </VirtualHost>
  1372. <VirtualHost *>
  1373. DocumentRoot "/hosting/wwwroot/payplus.com.mk"
  1374. ServerName payplus.com.mk
  1375. <Directory "/hosting/wwwroot/payplus.com.mk">
  1376. allow from all
  1377. Options -Indexes
  1378. </Directory>
  1379. ServerAlias www.payplus.com.mk
  1380. </VirtualHost>
  1381. <VirtualHost *>
  1382. DocumentRoot "/hosting/wwwroot/dulmako.com.mk"
  1383. ServerName dulmako.com.mk
  1384. <Directory "/hosting/wwwroot/dulmako.com.mk">
  1385. allow from all
  1386. Options -Indexes
  1387. </Directory>
  1388. ServerAlias www.dulmako.com.mk
  1389. </VirtualHost>
  1390. <VirtualHost *>
  1391. DocumentRoot "/hosting/wwwroot/jaca.com.mk"
  1392. ServerName jaca.com.mk
  1393. <Directory "/hosting/wwwroot/jaca.com.mk">
  1394. allow from all
  1395. Options -Indexes
  1396. </Directory>
  1397. ServerAlias www.jaca.com.mk
  1398. </VirtualHost>
  1399. <VirtualHost *>
  1400. DocumentRoot "/hosting/wwwroot/vi-ko.com.mk"
  1401. ServerName vi-ko.com.mk
  1402. <Directory "/hosting/wwwroot/vi-ko.com.mk">
  1403. allow from all
  1404. Options -Indexes
  1405. </Directory>
  1406. ServerAlias www.vi-ko.com.mk
  1407. </VirtualHost>
  1408.  
  1409. <VirtualHost *>
  1410. DocumentRoot "/hosting/wwwroot/bitola.gov.mk"
  1411. ServerName bitola.gov.mk
  1412. <Directory "/hosting/wwwroot/bitola.gov.mk">
  1413. allow from all
  1414. Options -Indexes
  1415. </Directory>
  1416. ServerAlias www.bitola.gov.mk
  1417. <IfModule mod_rewrite.c>
  1418. RewriteEngine on
  1419. RewriteLog /etc/httpd/logs/rewrite.log
  1420. RewriteLogLevel 2
  1421. RewriteRule [^a-zA-Z0-9|\.|/|_|-] - [F]
  1422. RewriteCond %{REQUEST_METHOD} ^TRACE
  1423. RewriteRule .* - [F]
  1424. </IfModule>
  1425. ScriptAliasMatch /robots.txt /var/www/cgi-bin/robots.cgi
  1426. </VirtualHost>
  1427. <VirtualHost *>
  1428. DocumentRoot "/hosting/wwwroot/itm.com.mk"
  1429. ServerName itm.com.mk
  1430. <Directory "/hosting/wwwroot/itm.com.mk">
  1431. allow from all
  1432. Options -Indexes
  1433. </Directory>
  1434. ServerAlias www.itm.com.mk
  1435. </VirtualHost>
  1436.  
  1437. <VirtualHost *>
  1438. DocumentRoot "/hosting/wwwroot/skopjehotels.com.mk"
  1439. ServerName skopjehotels.com.mk
  1440. <Directory "/hosting/wwwroot/skopjehotels.com.mk">
  1441. allow from all
  1442. Options -Indexes
  1443. </Directory>
  1444. ServerAlias www.skopjehotels.com.mk
  1445. </VirtualHost>
  1446.  
  1447. <VirtualHost *>
  1448. DocumentRoot "/hosting/wwwroot/unimaster.com.mk"
  1449. ServerName unimaster.com.mk
  1450. <Directory "/hosting/wwwroot/unimaster.com.mk">
  1451. allow from all
  1452. Options -Indexes
  1453. </Directory>
  1454. ServerAlias www.unimaster.com.mk
  1455. </VirtualHost>
  1456. <VirtualHost *>
  1457. DocumentRoot "/hosting/wwwroot/sier.org.mk"
  1458. ServerName sier.org.mk
  1459. <Directory "/hosting/wwwroot/sier.org.mk">
  1460. allow from all
  1461. Options -Indexes
  1462. </Directory>
  1463. ServerAlias www.sier.org.mk
  1464. </VirtualHost>
  1465. <VirtualHost *>
  1466. DocumentRoot /hosting/wwwroot/niko.com.mk
  1467. ServerName niko.com.mk
  1468. php_value register_globals 1
  1469. <Directory /hosting/wwwroot/niko.com.mk>
  1470. allow from all
  1471. Options -Indexes
  1472. </Directory>
  1473. ServerAlias www.niko.com.mk nikocomputers.com www.nikocomputers.com
  1474. </VirtualHost>
  1475.  
  1476. <VirtualHost *>
  1477. DocumentRoot "/hosting/wwwroot/sap.com.mk"
  1478. ServerName sap.com.mk
  1479. <Directory "/hosting/wwwroot/sap.com.mk">
  1480. allow from all
  1481. Options -Indexes
  1482. </Directory>
  1483. <IfModule mod_security.c>
  1484. <LocationMatch "/admin/(.+)">
  1485. SecFilterInheritance Off
  1486. </LocationMatch>
  1487. </IfModule>
  1488. ServerAlias www.sap.com.mk
  1489. </VirtualHost>
  1490.  
  1491. <VirtualHost *>
  1492. DocumentRoot "/hosting/wwwroot/cds.com.mk"
  1493. ServerName cds.com.mk
  1494. <Directory "/hosting/wwwroot/cds.com.mk">
  1495. allow from all
  1496. <IfModule mod_security2.c>
  1497. SecRuleEngine Off
  1498. </IfModule>
  1499. Options -Indexes
  1500. </Directory>
  1501. ServerAlias www.cds.com.mk
  1502. </VirtualHost>
  1503. <VirtualHost *>
  1504. DocumentRoot "/hosting/wwwroot/remaks.com.mk"
  1505. ServerName remaks.com.mk
  1506. <Directory "/hosting/wwwroot/remaks.com.mk">
  1507. allow from all
  1508. Options -Indexes
  1509. </Directory>
  1510. ServerAlias www.remaks.com.mk
  1511. </VirtualHost>
  1512. <VirtualHost *>
  1513. DocumentRoot "/hosting/wwwroot/csglobal.com.mk"
  1514. ServerName csglobal.com.mk
  1515. <Directory "/hosting/wwwroot/csglobal.com.mk">
  1516. allow from all
  1517. Options -Indexes
  1518. </Directory>
  1519. ServerAlias www.csglobal.com.mk
  1520. </VirtualHost>
  1521.  
  1522. <VirtualHost *>
  1523. DocumentRoot "/hosting/wwwroot/dituria.org.mk"
  1524. ServerName dituria.org.mk
  1525. <Directory "/hosting/wwwroot/dituria.org.mk">
  1526. allow from all
  1527. Options -Indexes
  1528. </Directory>
  1529. ServerAlias www.dituria.org.mk
  1530. </VirtualHost>
  1531.  
  1532. <VirtualHost *>
  1533. DocumentRoot "/hosting/wwwroot/vemed.com.mk"
  1534. ServerName vemed.com.mk
  1535. <Directory "/hosting/wwwroot/vemed.com.mk">
  1536. allow from all
  1537. Options -Indexes
  1538. </Directory>
  1539. ServerAlias www.vemed.com.mk
  1540. </VirtualHost>
  1541.  
  1542. <VirtualHost *>
  1543. DocumentRoot "/hosting/wwwroot/opstinavinica.gov.mk"
  1544. ServerName opstinavinica.gov.mk
  1545. <Directory "/hosting/wwwroot/opstinavinica.gov.mk">
  1546. allow from all
  1547. Options -Indexes
  1548. </Directory>
  1549. ServerAlias www.opstinavinica.gov.mk
  1550. </VirtualHost>
  1551.  
  1552. <VirtualHost *>
  1553. DocumentRoot "/hosting/wwwroot/kim.com.mk"
  1554. ServerName kim.com.mk
  1555. <Directory "/hosting/wwwroot/kim.com.mk">
  1556. allow from all
  1557. Options -Indexes
  1558. </Directory>
  1559. ServerAlias www.kim.com.mk
  1560. </VirtualHost>
  1561. <VirtualHost *>
  1562. DocumentRoot "/hosting/wwwroot/makweld.com.mk"
  1563. ServerName makweld.com.mk
  1564. <Directory "/hosting/wwwroot/makweld.com.mk">
  1565. allow from all
  1566. Options -Indexes
  1567. </Directory>
  1568. ServerAlias www.makweld.com.mk
  1569. </VirtualHost>
  1570.  
  1571. #<VirtualHost *>
  1572. #DocumentRoot "/hosting/wwwroot/pressclipping.com.mk"
  1573. #ServerName pressclipping.com.mk
  1574. #<Directory "/hosting/wwwroot/pressclipping.com.mk">
  1575. #allow from all
  1576. #Options -Indexes
  1577. #</Directory>
  1578. #ServerAlias www.pressclipping.com.mk
  1579. #</VirtualHost>
  1580.  
  1581. <VirtualHost *>
  1582. DocumentRoot "/hosting/wwwroot/agria.com.mk"
  1583. ServerName agria.com.mk
  1584. <Directory "/hosting/wwwroot/agria.com.mk">
  1585. allow from all
  1586. Options -Indexes
  1587. </Directory>
  1588. ServerAlias www.agria.com.mk
  1589. </VirtualHost>
  1590. <VirtualHost *>
  1591. DocumentRoot "/hosting/wwwroot/izue.org.mk"
  1592. ServerName izue.org.mk
  1593. <Directory "/hosting/wwwroot/izue.org.mk">
  1594. allow from all
  1595. Options -Indexes
  1596. </Directory>
  1597. ServerAlias www.izue.org.mk
  1598. </VirtualHost>
  1599. <VirtualHost *>
  1600. DocumentRoot "/hosting/wwwroot/geing.com.mk"
  1601. ServerName geing.com.mk
  1602. <Directory "/hosting/wwwroot/geing.com.mk">
  1603. allow from all
  1604. Options -Indexes
  1605. </Directory>
  1606. <Directory /hosting/wwwroot/geing.com.mk/administrator>
  1607. AuthType Basic
  1608. AuthName Admin
  1609. AuthUserFile /hosting/wwwroot/geing.com.mk/administrator/.htpasswd
  1610. Satisfy All
  1611. Require valid-user
  1612. </Directory>
  1613. ServerAlias www.geing.com.mk
  1614. </VirtualHost>
  1615.  
  1616. #<VirtualHost *>
  1617. #DocumentRoot "/hosting/wwwroot/skopje.mk"
  1618. #ServerName skopje.mk
  1619. #ErrorLog /var/log/httpd/skopje.mk.error.log
  1620. #CustomLog /var/log/httpd/skopje.mk.access.log combined
  1621. #<Directory "/hosting/wwwroot/skopje.mk">
  1622. #allow from all
  1623. #Options -Indexes
  1624. #</Directory>
  1625. #ServerAlias www.skopje.mk
  1626. #</VirtualHost>
  1627.  
  1628. <VirtualHost *>
  1629. DocumentRoot "/hosting/wwwroot/inbroker.com.mk"
  1630. ServerName inbroker.com.mk
  1631. <Directory "/hosting/wwwroot/inbroker.com.mk">
  1632. allow from all
  1633. Options -Indexes
  1634. </Directory>
  1635. ServerAlias www.inbroker.com.mk
  1636. </VirtualHost>
  1637. <VirtualHost *>
  1638. DocumentRoot "/hosting/wwwroot/ohridija.com.mk"
  1639. ServerName ohridija.com.mk
  1640. <Directory "/hosting/wwwroot/ohridija.com.mk">
  1641. allow from all
  1642. Options -Indexes
  1643. </Directory>
  1644. ServerAlias www.ohridija.com.mk
  1645. </VirtualHost>
  1646. <VirtualHost *>
  1647. DocumentRoot "/hosting/wwwroot/hiv.gov.mk"
  1648. ServerName hiv.gov.mk
  1649. <Directory "/hosting/wwwroot/hiv.gov.mk">
  1650. allow from all
  1651. Options -Indexes
  1652. </Directory>
  1653. ServerAlias www.hiv.gov.mk
  1654. </VirtualHost>
  1655. <VirtualHost *>
  1656. DocumentRoot "/hosting/wwwroot/torpedo.com.mk"
  1657. ServerName torpedo.com.mk
  1658. <Directory "/hosting/wwwroot/torpedo.com.mk">
  1659. allow from all
  1660. Options -Indexes
  1661. </Directory>
  1662. ServerAlias www.torpedo.com.mk
  1663. </VirtualHost>
  1664. #<VirtualHost *>
  1665. #DocumentRoot "/hosting/wwwroot/mfm.com.mk"
  1666. #ServerName mfm.com.mk
  1667. #<Directory "/hosting/wwwroot/mfm.com.mk">
  1668. #allow from all
  1669. #Options -Indexes
  1670. #</Directory>
  1671. #ServerAlias www.mfm.com.mk
  1672. #</VirtualHost>
  1673.  
  1674. <VirtualHost *>
  1675. DocumentRoot /hosting/wwwroot/test.zonamebel.com.mk
  1676. ServerName zonamebel.com.mk
  1677. <Directory /hosting/wwwroot/test.zonamebel.com.mk>
  1678. <IfModule mod_security2.c>
  1679. SecRuleEngine Off
  1680. </IfModule>
  1681. allow from all
  1682. Options -Indexes
  1683. </Directory>
  1684. ServerAlias www.zonamebel.com.mk
  1685. </VirtualHost>
  1686.  
  1687. <Directory /hosting/wwwroot/test.zonamebel.com.mk/>
  1688. AllowOverride All
  1689. </Directory>
  1690.  
  1691. <VirtualHost *>
  1692. DocumentRoot "/hosting/wwwroot/emborium.com.mk"
  1693. ServerName emborium.com.mk
  1694. <Directory "/hosting/wwwroot/emborium.com.mk">
  1695. allow from all
  1696. Options -Indexes
  1697. </Directory>
  1698. ServerAlias www.emborium.com.mk
  1699. </VirtualHost>
  1700.  
  1701. <VirtualHost *>
  1702. DocumentRoot "/hosting/wwwroot/fiva.com.mk"
  1703. ServerName fiva.com.mk
  1704. <Directory "/hosting/wwwroot/fiva.com.mk">
  1705. allow from all
  1706. Options -Indexes
  1707. </Directory>
  1708. ServerAlias www.fiva.com.mk
  1709. </VirtualHost>
  1710. <VirtualHost *>
  1711. DocumentRoot "/hosting/wwwroot/majskicvet.com.mk"
  1712. ServerName majskicvet.com.mk
  1713. <Directory "/hosting/wwwroot/majskicvet.com.mk">
  1714. allow from all
  1715. Options -Indexes
  1716. </Directory>
  1717. ServerAlias www.majskicvet.com.mk
  1718. </VirtualHost>
  1719. <VirtualHost *>
  1720. DocumentRoot /hosting/wwwroot/forspedlogistics.com.mk
  1721. ServerName forspedlogistics.com.mk
  1722. <Directory "/hosting/wwwroot/forspedlogistics.com.mk">
  1723. allow from all
  1724. Options -Indexes
  1725. </Directory>
  1726. ServerAlias www.forspedlogistics.com.mk
  1727. </VirtualHost>
  1728. <VirtualHost *>
  1729. DocumentRoot /hosting/wwwroot/teatarveles.mk
  1730. ServerName teatarveles.mk
  1731. <Directory "/hosting/wwwroot/teatarveles.mk">
  1732. allow from all
  1733. Options -Indexes
  1734. </Directory>
  1735. ServerAlias www.teatarveles.mk
  1736. </VirtualHost>
  1737. <VirtualHost *>
  1738. DocumentRoot /hosting/wwwroot/test.impuls.net.mk
  1739. ServerName test.impuls.net.mk
  1740. <Directory /hosting/wwwroot/test.impuls.net.mk>
  1741. allow from all
  1742. Options -Indexes
  1743. </Directory>
  1744. ServerAlias www.test.impuls.net.mk
  1745. </VirtualHost>
  1746. <VirtualHost *>
  1747. DocumentRoot "/hosting/wwwroot/kss.mk"
  1748. ServerName kss.mk
  1749. <Directory "/hosting/wwwroot/kss.mk">
  1750. allow from all
  1751. Options -Indexes
  1752. </Directory>
  1753. ServerAlias www.kss.mk
  1754. </VirtualHost>
  1755. <VirtualHost *>
  1756. DocumentRoot "/hosting/wwwroot/betasped.com.mk"
  1757. ServerName betasped.com.mk
  1758. <Directory "/hosting/wwwroot/betasped.com.mk">
  1759. allow from all
  1760. Options -Indexes
  1761. </Directory>
  1762. ServerAlias www.betasped.com.mk
  1763. </VirtualHost>
  1764. <VirtualHost *>
  1765. DocumentRoot "/hosting/wwwroot/hotelklimetica.com.mk"
  1766. ServerName hotelklimetica.com.mk
  1767. <Directory "/hosting/wwwroot/hotelklimetica.com.mk">
  1768. allow from all
  1769. Options -Indexes
  1770. </Directory>
  1771. ServerAlias www.hotelklimetica.com.mk
  1772. </VirtualHost>
  1773. <VirtualHost *>
  1774. DocumentRoot "/hosting/wwwroot/gamezone.com.mk"
  1775. ServerName gamezone.com.mk
  1776. <Directory "/hosting/wwwroot/gamezone.com.mk">
  1777. allow from all
  1778. Options -Indexes
  1779. </Directory>
  1780. ServerAlias www.gamezone.com.mk
  1781. </VirtualHost>
  1782. <VirtualHost *>
  1783. DocumentRoot "/hosting/wwwroot/best.com.mk"
  1784. ServerName best.com.mk
  1785. <Directory "/hosting/wwwroot/best.com.mk">
  1786. allow from all
  1787. Options -Indexes
  1788. </Directory>
  1789. ServerAlias www.best.com.mk
  1790. </VirtualHost>
  1791. <VirtualHost *>
  1792. DocumentRoot "/hosting/wwwroot/experts.com.mk"
  1793. ServerName experts.com.mk
  1794. <Directory "/hosting/wwwroot/experts.com.mk">
  1795. allow from all
  1796. Options -Indexes
  1797. </Directory>
  1798. ServerAlias www.experts.com.mk
  1799. </VirtualHost>
  1800. <VirtualHost *>
  1801. DocumentRoot /hosting/wwwroot/niko.com.mk/shop
  1802. ServerName shop.niko.com.mk
  1803. php_value register_globals 1
  1804. <Directory /hosting/wwwroot/niko.com.mk/shop>
  1805. allow from all
  1806. Options -Indexes
  1807. </Directory>
  1808.  
  1809. ServerAlias www.shop.niko.com.mk shop.nikocomputers.com www.shop.nikocomputers.com
  1810. </VirtualHost>
  1811.  
  1812. <Directory /hosting/wwwroot/niko.com.mk/shop/admin>
  1813. AuthType Basic
  1814. AuthName Admin
  1815. AuthUserFile /hosting/wwwroot/niko.com.mk/shop/admin/.htpasswd
  1816. Satisfy All
  1817. Require valid-user
  1818. </Directory>
  1819.  
  1820. <Directory /hosting/wwwroot/niko.com.mk/>
  1821. AllowOverride All
  1822. </Directory>
  1823.  
  1824. <VirtualHost *>
  1825. DocumentRoot /hosting/wwwroot/luminexplus.com.mk
  1826. ServerName luminexplus.com.mk
  1827. <Directory /hosting/wwwroot/luminexplus.com.mk>
  1828. allow from all
  1829. Options -Indexes
  1830. </Directory>
  1831. <IfModule mod_security.c>
  1832. <LocationMatch "/phpMyAdmin/(.+)">
  1833. SecFilterInheritance Off
  1834. </LocationMatch>
  1835. </IfModule>
  1836. ServerAlias www.luminexplus.com.mk luminexplus.com www.luminexplus.com
  1837. </VirtualHost>
  1838.  
  1839. <VirtualHost *>
  1840. DocumentRoot /hosting/wwwroot/niko.com.mk/msi.com.mk
  1841. ServerName msi.com.mk
  1842. <Directory /hosting/wwwroot/niko.com.mk/msi.com.mk>
  1843. allow from all
  1844. Options -Indexes
  1845. </Directory>
  1846. ServerAlias www.msi.com.mk
  1847. </VirtualHost>
  1848. <VirtualHost *>
  1849. DocumentRoot "/hosting/wwwroot/izak.com.mk"
  1850. ServerName izak.com.mk
  1851. <Directory "/hosting/wwwroot/izak.com.mk">
  1852. allow from all
  1853. Options -Indexes
  1854. </Directory>
  1855. ServerAlias www.izak.com.mk
  1856. Redirect / "http://www.izaksolutions.com"
  1857. </VirtualHost>
  1858. <VirtualHost *>
  1859. DocumentRoot /hosting/wwwroot/tobacco.mk
  1860. ServerName tobacco.mk
  1861. <Directory "/hosting/wwwroot/tobacco.mk">
  1862. allow from all
  1863. Options -Indexes
  1864. </Directory>
  1865. ServerAlias www.tobacco.mk
  1866. </VirtualHost>
  1867. <VirtualHost *>
  1868. DocumentRoot /hosting/wwwroot/chrcr.org.mk
  1869. ServerName chrcr.org.mk
  1870. <Directory "/hosting/wwwroot/chrcr.org.mk">
  1871. allow from all
  1872. Options -Indexes
  1873. </Directory>
  1874. ServerAlias www.chrcr.org.mk
  1875. </VirtualHost>
  1876. <VirtualHost *>
  1877. DocumentRoot /hosting/wwwroot/gudalat.com
  1878. ServerName gudalat.com
  1879. <Directory "/hosting/wwwroot/gudalat.com">
  1880. allow from all
  1881. Options -Indexes
  1882. </Directory>
  1883. ServerAlias www.gudalat.com
  1884. </VirtualHost>
  1885.  
  1886.  
  1887. <VirtualHost *>
  1888. DocumentRoot /hosting/wwwroot/anel.mk
  1889. ServerName anel.mk
  1890. <Directory "/hosting/wwwroot/anel.mk">
  1891. allow from all
  1892. Options -Indexes
  1893. </Directory>
  1894. ServerAlias www.anel.mk anel.com.mk www.anel.com.mk anelcomputers.com.mk www.anelcomputers.com.mk
  1895.  
  1896. </VirtualHost>
  1897.  
  1898. <VirtualHost *>
  1899. DocumentRoot /hosting/wwwroot/int.com.mk
  1900. ServerName int.com.mk
  1901. RewriteEngine On
  1902. RewriteOptions Inherit
  1903. RewriteLog /etc/httpd/logs/rewrite.log
  1904. RewriteLogLevel 2
  1905. <Directory /hosting/wwwroot/int.com.mk>
  1906. allow from all
  1907. Options -Indexes
  1908. Options +FollowSymLinks +SymLinksIfOwnerMatch
  1909. DirectoryIndex index.html
  1910. </Directory>
  1911. ServerAlias www.int.com.mk
  1912. </VirtualHost>
  1913.  
  1914. <Directory /hosting/wwwroot/int.com.mk/>
  1915. AllowOverride All
  1916. </Directory>
  1917.  
  1918. <VirtualHost *>
  1919. DocumentRoot "/hosting/wwwroot/ea.gov.mk"
  1920. ServerName ea.gov.mk
  1921. <Directory "/hosting/wwwroot/ea.gov.mk">
  1922. allow from all
  1923. Options -Indexes
  1924. </Directory>
  1925. ServerAlias www.ea.gov.mk
  1926. </VirtualHost>
  1927.  
  1928. <Directory /hosting/wwwroot/ea.gov.mk/cms/administrator>
  1929. AuthType Basic
  1930. AuthName Admin
  1931. AuthUserFile /hosting/wwwroot/ea.gov.mk/cms/administrator/.htpasswd
  1932. Satisfy All
  1933. Require valid-user
  1934. </Directory>
  1935.  
  1936. <Directory /hosting/wwwroot/ea.gov.mk/cms/>
  1937. AllowOverride All
  1938. </Directory>
  1939.  
  1940. <VirtualHost *>
  1941. DocumentRoot /hosting/wwwroot/eurotabak.com.mk
  1942. ServerName eurotabak.com.mk
  1943. <Directory "/hosting/wwwroot/eurotabak.com.mk">
  1944. allow from all
  1945. Options -Indexes
  1946. </Directory>
  1947. ServerAlias www.eurotabak.com.mk
  1948. </VirtualHost>
  1949. <VirtualHost *>
  1950. DocumentRoot /hosting/wwwroot/tdk.com.mk
  1951. ServerName tdk.com.mk
  1952. <Directory "/hosting/wwwroot/tdk.com.mk">
  1953. allow from all
  1954. Options -Indexes
  1955. </Directory>
  1956. ServerAlias www.tdk.com.mk
  1957. </VirtualHost>
  1958. <VirtualHost *>
  1959. DocumentRoot /hosting/wwwroot/nloffice.com.mk
  1960. ServerName nloffice.com.mk
  1961. <Directory "/hosting/wwwroot/nloffice.com.mk">
  1962. allow from all
  1963. Options -Indexes
  1964. </Directory>
  1965. ServerAlias www.nloffice.com.mk
  1966. </VirtualHost>
  1967. <VirtualHost *>
  1968. DocumentRoot /hosting/wwwroot/bulatrans.com.mk
  1969. ServerName bulatrans.com.mk
  1970. <Directory "/hosting/wwwroot/bulatrans.com.mk">
  1971. allow from all
  1972. Options -Indexes
  1973. </Directory>
  1974. ServerAlias www.bulatrans.com.mk
  1975. </VirtualHost>
  1976. <VirtualHost *>
  1977. DocumentRoot "/hosting/wwwroot/mlekokontrol.org.mk"
  1978. ServerName mlekokontrol.org.mk
  1979. <Directory "/hosting/wwwroot/mlekokontrol.org.mk">
  1980. allow from all
  1981. Options -Indexes
  1982. </Directory>
  1983. ServerAlias www.mlekokontrol.org.mk
  1984. </VirtualHost>
  1985. <VirtualHost *>
  1986. DocumentRoot /hosting/wwwroot/popsoft.com.mk
  1987. ServerName popsoft.com.mk
  1988. <Directory "/hosting/wwwroot/popsoft.com.mk">
  1989. allow from all
  1990. Options -Indexes
  1991. </Directory>
  1992. ServerAlias www.popsoft.com.mk
  1993. </VirtualHost>
  1994. <VirtualHost *>
  1995. DocumentRoot "/hosting/wwwroot/neuromedica.com.mk"
  1996. ServerName neuromedica.com.mk
  1997. <Directory "/hosting/wwwroot/neuromedica.com.mk">
  1998. allow from all
  1999. Options -Indexes
  2000. </Directory>
  2001. ServerAlias www.neuromedica.com.mk
  2002. </VirtualHost>
  2003. <VirtualHost *>
  2004. DocumentRoot "/hosting/wwwroot/habitat.org.mk"
  2005. ServerName habitat.org.mk
  2006. <Directory "/hosting/wwwroot/habitat.org.mk">
  2007. allow from all
  2008. Options -Indexes
  2009. </Directory>
  2010. ServerAlias www.habitat.org.mk
  2011. </VirtualHost>
  2012. <VirtualHost *>
  2013. DocumentRoot /hosting/wwwroot/bozinovski.com.mk
  2014. ServerName bozinovski.com.mk
  2015. <Directory "/hosting/wwwroot/bozinovski.com.mk">
  2016. allow from all
  2017. Options -Indexes
  2018. </Directory>
  2019. ServerAlias www.bozinovski.com.mk
  2020. </VirtualHost>
  2021. <VirtualHost *>
  2022. DocumentRoot /hosting/wwwroot/mlga.com.mk
  2023. ServerName mlga.com.mk
  2024. <Directory "/hosting/wwwroot/mlga.com.mk">
  2025. allow from all
  2026. Options -Indexes
  2027. </Directory>
  2028. ServerAlias www.mlga.com.mk
  2029. </VirtualHost>
  2030. <VirtualHost *>
  2031. DocumentRoot "/hosting/wwwroot/e-voucher.mk"
  2032. ServerName e-voucher.mk
  2033. <Directory "/hosting/wwwroot/e-voucher.mk">
  2034. allow from all
  2035. Options -Indexes
  2036. </Directory>
  2037. ServerAlias www.e-voucher.mk
  2038. </VirtualHost>
  2039. <VirtualHost *>
  2040. DocumentRoot /hosting/wwwroot/worldlearning.org.mk
  2041. ServerName worldlearning.org.mk
  2042. <Directory "/hosting/wwwroot/worldlearning.org.mk">
  2043. allow from all
  2044. Options -Indexes
  2045. </Directory>
  2046. ServerAlias www.worldlearning.org.mk
  2047. </VirtualHost>
  2048. <VirtualHost *>
  2049. DocumentRoot "/hosting/wwwroot/asterisks.com.mk"
  2050. ServerName asterisks.com.mk
  2051. <Directory "/hosting/wwwroot/asterisks.com.mk">
  2052. allow from all
  2053. Options -Indexes
  2054. </Directory>
  2055. ServerAlias www.asterisks.com.mk
  2056. </VirtualHost>
  2057. <VirtualHost *>
  2058. DocumentRoot "/hosting/wwwroot/bujoto.com.mk"
  2059. ServerName bujoto.com.mk
  2060. <Directory "/hosting/wwwroot/bujoto.com.mk">
  2061. allow from all
  2062. Options -Indexes
  2063. </Directory>
  2064. ServerAlias www.bujoto.com.mk
  2065. <IfModule mod_security.c>
  2066. <LocationMatch "/admin/(.+)">
  2067. SecFilterInheritance Off
  2068. </LocationMatch>
  2069. </IfModule>
  2070. </VirtualHost>
  2071.  
  2072. <VirtualHost *>
  2073. DocumentRoot "/hosting/wwwroot/lakeskateboards.com.mk"
  2074. ServerName lakeskateboards.com.mk
  2075. <Directory "/hosting/wwwroot/lakeskateboards.com.mk">
  2076. allow from all
  2077. Options -Indexes
  2078. </Directory>
  2079. ServerAlias www.lakeskateboards.com.mk
  2080. </VirtualHost>
  2081.  
  2082. <VirtualHost *>
  2083. DocumentRoot /hosting/wwwroot/microbiology-balkanica2009.com.mk
  2084. ServerName microbiology-balkanica2009.com.mk
  2085. <Directory "/hosting/wwwroot/microbiology-balkanica2009.com.mk">
  2086. allow from all
  2087. Options -Indexes
  2088. </Directory>
  2089. ServerAlias www.microbiology-balkanica2009.com.mk
  2090. </VirtualHost>
  2091. <VirtualHost *>
  2092. DocumentRoot "/hosting/wwwroot/futura.net.mk"
  2093. ServerName futura.net.mk
  2094. <Directory "/hosting/wwwroot/futura.net.mk">
  2095. allow from all
  2096. Options -Indexes
  2097. </Directory>
  2098. ServerAlias www.futura.net.mk
  2099. </VirtualHost>
  2100. <VirtualHost *>
  2101. DocumentRoot /hosting/wwwroot/drmeri.mk
  2102. ServerName drmeri.mk
  2103. <Directory "/hosting/wwwroot/drmeri.mk">
  2104. allow from all
  2105. Options -Indexes
  2106. </Directory>
  2107. ServerAlias www.drmeri.mk
  2108. </VirtualHost>
  2109.  
  2110. <VirtualHost *>
  2111. DocumentRoot /hosting/wwwroot/ruen.com.mk
  2112. ServerName ruen.com.mk
  2113. <Directory "/hosting/wwwroot/ruen.com.mk">
  2114. allow from all
  2115. Options -Indexes
  2116. </Directory>
  2117. ServerAlias www.ruen.com.mk
  2118. </VirtualHost>
  2119.  
  2120. <VirtualHost *>
  2121. DocumentRoot /hosting/wwwroot/theduckcafe.com.mk
  2122. ServerName theduckcafe.com.mk
  2123. <Directory "/hosting/wwwroot/theduckcafe.com.mk">
  2124. allow from all
  2125. Options -Indexes
  2126. </Directory>
  2127. ServerAlias www.theduckcafe.com.mk
  2128. </VirtualHost>
  2129. <VirtualHost *>
  2130. DocumentRoot /hosting/wwwroot/pumpi.com.mk
  2131. ServerName pumpi.com.mk
  2132. <Directory "/hosting/wwwroot/pumpi.com.mk">
  2133. allow from all
  2134. Options -Indexes
  2135. </Directory>
  2136. ServerAlias www.pumpi.com.mk
  2137. </VirtualHost>
  2138.  
  2139.  
  2140. <VirtualHost *>
  2141. DocumentRoot /hosting/wwwroot/arhiv.gov.mk
  2142. ServerName arhiv.gov.mk
  2143. <Directory /hosting/wwwroot/arhiv.gov.mk >
  2144. allow from all
  2145. Options +Indexes
  2146. <IfModule mod_security2.c>
  2147. SecRuleEngine Off
  2148. </IfModule>
  2149. </Directory>
  2150. ServerAlias www.arhiv.gov.mk
  2151. </VirtualHost>
  2152.  
  2153. <VirtualHost *>
  2154. DocumentRoot /hosting/wwwroot/amdbitola1.com.mk
  2155. ServerName amdbitola1.com.mk
  2156. <Directory "/hosting/wwwroot/amdbitola1.com.mk">
  2157. allow from all
  2158. Options -Indexes
  2159. </Directory>
  2160. ServerAlias www.amdbitola1.com.mk
  2161. </VirtualHost>
  2162. <VirtualHost *>
  2163. DocumentRoot /hosting/wwwroot/testbanners.t-home.mk
  2164. ServerName testbanners.t-home.mk
  2165. <Directory "/hosting/wwwroot/testbanners.t-home.mk">
  2166. allow from all
  2167. Options -Indexes
  2168. </Directory>
  2169. ServerAlias www.testbanners.t-home.mk
  2170. </VirtualHost>
  2171. <VirtualHost *>
  2172. DocumentRoot "/hosting/wwwroot/warify.mt.net.mk"
  2173. ServerName warify.mt.net.mk
  2174. <Directory "/hosting/wwwroot/warify.mt.net.mk">
  2175. allow from all
  2176. Options -Indexes
  2177. </Directory>
  2178. ServerAlias www.warify.mt.net.mk
  2179. </VirtualHost>
  2180. <VirtualHost *>
  2181. DocumentRoot "/hosting/wwwroot/kocoracin-ve.mt.net.mk"
  2182. ServerName kocoracin-ve.mt.net.mk
  2183. <Directory "/hosting/wwwroot/kocoracin-ve.mt.net.mk">
  2184. allow from all
  2185. Options -Indexes
  2186. </Directory>
  2187. ServerAlias www.kocoracin-ve.mt.net.mk
  2188. </VirtualHost>
  2189.  
  2190.  
  2191. <VirtualHost *>
  2192. DocumentRoot /hosting/wwwroot/yenibalkan.net.mk
  2193. ServerName yenibalkan.net.mk
  2194. <Directory "/hosting/wwwroot/yenibalkan.net.mk">
  2195. allow from all
  2196. Options -Indexes
  2197. </Directory>
  2198. ServerAlias www.yenibalkan.net.mk
  2199. </VirtualHost>
  2200. <VirtualHost *>
  2201. DocumentRoot /hosting/wwwroot/cctools.mt.net.mk
  2202. ServerName cctools.mt.net.mk
  2203. <Directory "/hosting/wwwroot/cctools.mt.net.mk">
  2204. allow from all
  2205. Options -Indexes
  2206. </Directory>
  2207. ServerAlias www.cctools.mt.net.mk
  2208. </VirtualHost>
  2209. <VirtualHost *>
  2210. DocumentRoot /hosting/wwwroot/traffacct.mt.net.mk
  2211. ServerName traffacct.mt.net.mk
  2212. <Directory "/hosting/wwwroot/traffacct.mt.net.mk">
  2213. allow from all
  2214. Options -Indexes
  2215. </Directory>
  2216. ServerAlias www.traffacct.mt.net.mk
  2217. </VirtualHost>
  2218. <VirtualHost *>
  2219. DocumentRoot /hosting/wwwroot/testssl
  2220. ServerName testssl.mt.net.mk
  2221. <Directory "/hosting/wwwroot/testssl">
  2222. allow from all
  2223. Options -Indexes
  2224. </Directory>
  2225. ServerAlias www.testssl.mt.net.mk
  2226. </VirtualHost>
  2227.  
  2228. <VirtualHost *>
  2229. DocumentRoot /hosting/wwwroot/test.investirajvomakedonija.gov.mk
  2230. ServerName test.investirajvomakedonija.gov.mk
  2231. <Directory /hosting/wwwroot/test.investirajvomakedonija.gov.mk>
  2232. allow from all
  2233. Options -Indexes
  2234. allow from all
  2235. Options -Indexes
  2236. </Directory>
  2237. ServerAlias www.test.investirajvomakedonija.gov.mk
  2238. </VirtualHost>
  2239.  
  2240.  
  2241. <VirtualHost *>
  2242. DocumentRoot /hosting/wwwroot/test.ohridskoleto.com.mk
  2243. ServerName ohridskoleto.com.mk
  2244. <Directory /hosting/wwwroot/test.ohridskoleto.com.mk>
  2245. allow from all
  2246. Options -Indexes
  2247. </Directory>
  2248. ServerAlias www.ohridskoleto.com.mk ohridsummer.com.mk www.ohridsummer.com.mk ohridskoleto.org.mk www.ohridskoleto.org.mk ohridsummer.org.mk www.ohridsummer.org.mk
  2249. </VirtualHost>
  2250. <VirtualHost *>
  2251. DocumentRoot /hosting/wwwroot/skopskacarsija.gov.mk
  2252. ServerName skopskacarsija.gov.mk
  2253. <Directory "/hosting/wwwroot/skopskacarsija.gov.mk">
  2254. allow from all
  2255. Options -Indexes
  2256. </Directory>
  2257. ServerAlias www.skopskacarsija.gov.mk
  2258. </VirtualHost>
  2259.  
  2260. <Directory /hosting/wwwroot/skopskacarsija.gov.mk/administrator>
  2261. AuthType Basic
  2262. AuthName Admin
  2263. AuthUserFile /hosting/wwwroot/skopskacarsija.gov.mk/administrator/.htpasswd
  2264. Satisfy All
  2265. Require valid-user
  2266. </Directory>
  2267.  
  2268. <Directory /hosting/wwwroot/skopskacarsija.gov.mk/>
  2269. AllowOverride All
  2270. </Directory>
  2271.  
  2272. <VirtualHost *>
  2273. DocumentRoot /hosting/wwwroot/vsk.com.mk
  2274. ServerName vsk.com.mk
  2275. <Directory "/hosting/wwwroot/vsk.com.mk">
  2276. allow from all
  2277. Options -Indexes
  2278. </Directory>
  2279. ServerAlias www.vsk.com.mk
  2280. </VirtualHost>
  2281. <VirtualHost *>
  2282.  
  2283.  
  2284.  
  2285. DocumentRoot /hosting/wwwroot/imes.com.mk
  2286. ServerName imes.com.mk
  2287. <Directory "/hosting/wwwroot/imes.com.mk">
  2288. allow from all
  2289. Options -Indexes
  2290. </Directory>
  2291. ServerAlias www.imes.com.mk
  2292. </VirtualHost>
  2293. <VirtualHost *>
  2294. DocumentRoot /hosting/wwwroot/dzs.gov.mk
  2295. ServerName dzs.gov.mk
  2296. <Directory "/hosting/wwwroot/dzs.gov.mk">
  2297. allow from all
  2298. Options -Indexes
  2299. </Directory>
  2300. ServerAlias www.dzs.gov.mk
  2301. </VirtualHost>
  2302. <VirtualHost *>
  2303. DocumentRoot "/hosting/wwwroot/cosmotinex.com.mk"
  2304. ServerName cosmotinex.com.mk
  2305. <Directory "/hosting/wwwroot/cosmotinex.com.mk">
  2306. allow from all
  2307. Options -Indexes
  2308. DirectoryIndex default.htm
  2309. </Directory>
  2310. ServerAlias www.cosmotinex.com.mk
  2311. </VirtualHost>
  2312. <VirtualHost *>
  2313. DocumentRoot /hosting/wwwroot/tinex.com.mk
  2314. ServerName tinex.com.mk
  2315. <Directory "/hosting/wwwroot/tinex.com.mk">
  2316. allow from all
  2317. Options -Indexes
  2318. </Directory>
  2319. ServerAlias www.tinex.com.mk
  2320. </VirtualHost>
  2321. <VirtualHost *>
  2322. DocumentRoot /hosting/wwwroot/detra.edu.mk
  2323. ServerName detra.edu.mk
  2324. <Directory "/hosting/wwwroot/detra.edu.mk">
  2325. allow from all
  2326. Options -Indexes
  2327. </Directory>
  2328. ServerAlias www.detra.edu.mk
  2329. </VirtualHost>
  2330. <VirtualHost *>
  2331. DocumentRoot /hosting/wwwroot/totalstone.com.mk
  2332. ServerName totalstone.com.mk
  2333. <Directory "/hosting/wwwroot/totalstone.com.mk">
  2334. <IfModule mod_security2.c>
  2335. SecRuleEngine Off
  2336. </IfModule>
  2337. allow from all
  2338. Options -Indexes
  2339. </Directory>
  2340. ServerAlias www.totalstone.com.mk
  2341. </VirtualHost>
  2342.  
  2343. <VirtualHost *>
  2344. DocumentRoot "/hosting/wwwroot/panevropa.com.mk"
  2345. ServerName panevropa.com.mk
  2346. <Directory "/hosting/wwwroot/panevropa.com.mk">
  2347. allow from all
  2348. Options -Indexes
  2349. </Directory>
  2350. <IfModule mod_security2.c>
  2351. SecRuleRemoveById 970003
  2352. SecRuleRemoveById 970009
  2353. </IfModule>
  2354. #SecRuleEngine Off
  2355. ServerAlias www.panevropa.com.mk
  2356. </VirtualHost>
  2357.  
  2358. <VirtualHost *>
  2359. DocumentRoot /hosting/wwwroot/dbki.gov.mk
  2360. ServerName dbki.gov.mk
  2361. <Directory "/hosting/wwwroot/dbki.gov.mk">
  2362. allow from all
  2363. Options -Indexes
  2364. </Directory>
  2365. ServerAlias www.dbki.gov.mk
  2366. </VirtualHost>
  2367.  
  2368.  
  2369. <VirtualHost *>
  2370. DocumentRoot /hosting/wwwroot/intereuropa.com.mk
  2371. ServerName intereuropa.com.mk
  2372. <Directory "/hosting/wwwroot/intereuropa.com.mk">
  2373. allow from all
  2374. Options -Indexes
  2375. </Directory>
  2376. ServerAlias www.intereuropa.com.mk
  2377. </VirtualHost>
  2378. <VirtualHost *>
  2379. DocumentRoot /hosting/wwwroot/popovakula.com.mk
  2380. ServerName popovakula.com.mk
  2381. <Directory "/hosting/wwwroot/popovakula.com.mk">
  2382. allow from all
  2383. Options -Indexes
  2384. </Directory>
  2385. ServerAlias www.popovakula.com.mk
  2386. </VirtualHost>
  2387. <VirtualHost *>
  2388. DocumentRoot /hosting/wwwroot/delasystems.com.mk
  2389. ServerName delasystems.com.mk
  2390. <Directory "/hosting/wwwroot/delasystems.com.mk">
  2391. allow from all
  2392. Options -Indexes
  2393. </Directory>
  2394. ServerAlias www.delasystems.com.mk
  2395. </VirtualHost>
  2396.  
  2397. <VirtualHost *>
  2398. DocumentRoot /hosting/wwwroot/na.org.mk
  2399. ServerName na.org.mk
  2400. RewriteEngine On
  2401. RewriteOptions Inherit
  2402. RewriteLog /etc/httpd/logs/rewrite.log
  2403. RewriteLogLevel 2
  2404. <Directory "/hosting/wwwroot/na.org.mk">
  2405. <IfModule mod_security2.c>
  2406. SecRuleEngine Off
  2407. </IfModule>
  2408. allow from all
  2409. Options -Indexes
  2410. Options +FollowSymLinks +SymLinksIfOwnerMatch
  2411. </Directory>
  2412. ServerAlias www.na.org.mk
  2413. </VirtualHost>
  2414.  
  2415. <Directory /hosting/wwwroot/na.org.mk/>
  2416. AllowOverride All
  2417. </Directory>
  2418.  
  2419. <VirtualHost *>
  2420. DocumentRoot /hosting/wwwroot/hotelsalida.com.mk
  2421. ServerName hotelsalida.com.mk
  2422. <Directory "/hosting/wwwroot/hotelsalida.com.mk">
  2423. allow from all
  2424. Options -Indexes
  2425. </Directory>
  2426. ServerAlias www.hotelsalida.com.mk
  2427. </VirtualHost>
  2428. <VirtualHost *>
  2429. DocumentRoot /hosting/wwwroot/univerzalna.com.mk
  2430. ServerName univerzalna.com.mk
  2431. <Directory "/hosting/wwwroot/univerzalna.com.mk">
  2432. allow from all
  2433. Options -Indexes
  2434. </Directory>
  2435. ServerAlias www.univerzalna.com.mk
  2436. </VirtualHost>
  2437. <VirtualHost *>
  2438. DocumentRoot /hosting/wwwroot/pelister-trikotaza.com.mk
  2439. ServerName pelister-trikotaza.com.mk
  2440. <Directory "/hosting/wwwroot/pelister-trikotaza.com.mk">
  2441. allow from all
  2442. Options -Indexes
  2443. </Directory>
  2444. ServerAlias www.pelister-trikotaza.com.mk
  2445. </VirtualHost>
  2446.  
  2447.  
  2448. <VirtualHost *>
  2449. DocumentRoot /hosting/wwwroot/kverkus.com.mk
  2450. ServerName kverkus.com.mk
  2451. <Directory "/hosting/wwwroot/kverkus.com.mk">
  2452. allow from all
  2453. Options -Indexes
  2454. </Directory>
  2455. ServerAlias www.kverkus.com.mk
  2456. </VirtualHost>
  2457.  
  2458. <VirtualHost *>
  2459. DocumentRoot /hosting/wwwroot/infinite.com.mk
  2460. ServerName infinite.com.mk
  2461. <Directory "/hosting/wwwroot/infinite.com.mk">
  2462. allow from all
  2463. Options -Indexes
  2464. </Directory>
  2465. ServerAlias www.infinite.com.mk
  2466. </VirtualHost>
  2467. <VirtualHost *>
  2468. DocumentRoot /hosting/wwwroot/cira.org.mk
  2469. ServerName cira.org.mk
  2470. <Directory /hosting/wwwroot/cira.org.mk>
  2471. <IfModule mod_security2.c>
  2472. SecRuleEngine Off
  2473. </IfModule>
  2474. allow from all
  2475. Options -Indexes
  2476. </Directory>
  2477. ServerAlias www.cira.org.mk www.blf.org.mk blf.org.mk www.csr.org.mk csr.org.mk
  2478. </VirtualHost>
  2479.  
  2480.  
  2481.  
  2482. <VirtualHost *>
  2483. DocumentRoot /hosting/wwwroot/cov.gov.mk
  2484. ServerName cov.gov.mk
  2485. <Directory "/hosting/wwwroot/cov.gov.mk">
  2486. allow from all
  2487. Options -Indexes
  2488. </Directory>
  2489. ServerAlias www.cov.gov.mk
  2490. </VirtualHost>
  2491. <VirtualHost *>
  2492. DocumentRoot /hosting/wwwroot/aso.mk
  2493. ServerName aso.mk
  2494. <Directory "/hosting/wwwroot/aso.mk">
  2495. <IfModule mod_security2.c>
  2496. SecRuleEngine Off
  2497. </IfModule>
  2498. allow from all
  2499. Options -Indexes
  2500. </Directory>
  2501. ServerAlias www.aso.mk
  2502. </VirtualHost>
  2503. <VirtualHost *>
  2504. DocumentRoot /hosting/wwwroot/magroni.com.mk
  2505. ServerName magroni.com.mk
  2506. <Directory "/hosting/wwwroot/magroni.com.mk">
  2507. allow from all
  2508. Options -Indexes
  2509. </Directory>
  2510. ServerAlias www.magroni.com.mk
  2511. </VirtualHost>
  2512. <VirtualHost *>
  2513. DocumentRoot /hosting/wwwroot/hotelsileks.mk
  2514. ServerName hotelsileks.mk
  2515. RewriteEngine On
  2516. RewriteOptions Inherit
  2517. RewriteLog /etc/httpd/logs/rewrite.log
  2518. RewriteLogLevel 2
  2519. <Directory "/hosting/wwwroot/hotelsileks.mk">
  2520. <IfModule mod_security2.c>
  2521. SecRuleEngine Off
  2522. </IfModule>
  2523. allow from all
  2524. Options -Indexes
  2525. Options +FollowSymLinks +SymLinksIfOwnerMatch
  2526. </Directory>
  2527. ServerAlias www.hotelsileks.mk
  2528. </VirtualHost>
  2529.  
  2530. <Directory /hosting/wwwroot/hotelsileks.mk/>
  2531. AllowOverride All
  2532. </Directory>
  2533.  
  2534.  
  2535. <VirtualHost *>
  2536. DocumentRoot /hosting/wwwroot/preda.org.mk
  2537. ServerName preda.org.mk
  2538. <Directory /hosting/wwwroot/preda.org.mk>
  2539. allow from all
  2540. Options -Indexes
  2541. </Directory>
  2542. ServerAlias www.preda.org.mk
  2543. </VirtualHost>
  2544.  
  2545.  
  2546. <VirtualHost *>
  2547. DocumentRoot /hosting/wwwroot/ladna.com.mk
  2548. ServerName ladna.com.mk
  2549. <Directory "/hosting/wwwroot/ladna.com.mk">
  2550. allow from all
  2551. Options -Indexes
  2552. </Directory>
  2553. ServerAlias www.ladna.com.mk
  2554. </VirtualHost>
  2555. <VirtualHost *>
  2556. DocumentRoot /hosting/wwwroot/dobravoda.com.mk
  2557. ServerName dobravoda.com.mk
  2558. RewriteEngine On
  2559. RewriteOptions Inherit
  2560. RewriteLog /etc/httpd/logs/rewrite.log
  2561. RewriteLogLevel 2
  2562. <Directory "/hosting/wwwroot/dobravoda.com.mk">
  2563. <IfModule mod_security2.c>
  2564. SecRuleEngine Off
  2565. </IfModule>
  2566. allow from all
  2567. Options -Indexes
  2568. Options +FollowSymLinks +SymLinksIfOwnerMatch
  2569. </Directory>
  2570. ServerAlias www.dobravoda.com.mk
  2571. </VirtualHost>
  2572.  
  2573. <Directory /hosting/wwwroot/dobravoda.com.mk/>
  2574. AllowOverride All
  2575. </Directory>
  2576.  
  2577. <VirtualHost *>
  2578. DocumentRoot "/hosting/wwwroot/msmb.com.mk"
  2579. ServerName msmb.com.mk
  2580. <Directory "/hosting/wwwroot/msmb.com.mk">
  2581. allow from all
  2582. Options -Indexes
  2583. </Directory>
  2584. ServerAlias www.msmb.com.mk
  2585. </VirtualHost>
  2586. <VirtualHost *>
  2587. DocumentRoot /hosting/wwwroot/cityradio.com.mk
  2588. ServerName cityradio.com.mk
  2589. <Directory "/hosting/wwwroot/cityradio.com.mk">
  2590. allow from all
  2591. Options -Indexes
  2592. </Directory>
  2593. ServerAlias www.cityradio.com.mk
  2594. </VirtualHost>
  2595.  
  2596.  
  2597. <VirtualHost *>
  2598. DocumentRoot /hosting/wwwroot/ics.net.mk
  2599. ServerName ics.net.mk
  2600. <Directory /hosting/wwwroot/ics.net.mk>
  2601. allow from all
  2602. Options -Indexes
  2603. </Directory>
  2604. ServerAlias www.ics.net.mk
  2605. </VirtualHost>
  2606.  
  2607. <VirtualHost *>
  2608. DocumentRoot /hosting/wwwroot/studenicani.gov.mk
  2609. ServerName studenicani.gov.mk
  2610. <Directory /hosting/wwwroot/studenicani.gov.mk>
  2611. allow from all
  2612. Options -Indexes
  2613. </Directory>
  2614. ServerAlias www.studenicani.gov.mk
  2615. </VirtualHost>
  2616.  
  2617.  
  2618. <VirtualHost *>
  2619. DocumentRoot /hosting/wwwroot/xta.com.mk
  2620. ServerName xta.com.mk
  2621. <Directory /hosting/wwwroot/xta.com.mk>
  2622. allow from all
  2623. Options -Indexes
  2624. </Directory>
  2625. ServerAlias www.xta.com.mk
  2626. </VirtualHost>
  2627.  
  2628. <VirtualHost *>
  2629. DocumentRoot /hosting/wwwroot/asa-institut.mk
  2630. ServerName asa-institut.mk
  2631. <Directory /hosting/wwwroot/asa-institut.mk>
  2632. allow from all
  2633. Options -Indexes
  2634. </Directory>
  2635. ServerAlias www.asa-institut.mk
  2636. </VirtualHost>
  2637.  
  2638. <VirtualHost *>
  2639. DocumentRoot /hosting/wwwroot/www.prirodonaucen.com.mk
  2640. ServerName www.prirodonaucen.com.mk
  2641. <Directory /hosting/wwwroot/www.prirodonaucen.com.mk>
  2642. allow from all
  2643. Options -Indexes
  2644. </Directory>
  2645. ServerAlias www.www.prirodonaucen.com.mk
  2646. </VirtualHost>
  2647.  
  2648. <VirtualHost *>
  2649. DocumentRoot /hosting/wwwroot/komunabogovine.gov.mk
  2650. ServerName komunabogovine.gov.mk
  2651. <Directory /hosting/wwwroot/komunabogovine.gov.mk>
  2652. <IfModule mod_security2.c>
  2653. SecRuleEngine Off
  2654. </IfModule>
  2655. allow from all
  2656. Options -Indexes
  2657. </Directory>
  2658. ServerAlias www.komunabogovine.gov.mk
  2659. </VirtualHost>
  2660.  
  2661.  
  2662. <VirtualHost *>
  2663. DocumentRoot /hosting/wwwroot/maksoob.com.mk
  2664. ServerName maksoob.com.mk
  2665. <Directory /hosting/wwwroot/maksoob.com.mk>
  2666. allow from all
  2667. Options -Indexes
  2668. </Directory>
  2669. ServerAlias www.maksoob.com.mk
  2670. </VirtualHost>
  2671.  
  2672. <VirtualHost *>
  2673. DocumentRoot /hosting/wwwroot/betpoint.com.mk
  2674. ServerName betpoint.com.mk
  2675. php_value register_globals 1
  2676. #php_value date.timezone America/New_York
  2677. php_value date.timezone Europe/Skopje
  2678. <Directory /hosting/wwwroot/betpoint.com.mk>
  2679. <IfModule mod_security2.c>
  2680. SecRuleEngine Off
  2681. </IfModule>
  2682. allow from all
  2683. Options +Indexes
  2684. </Directory>
  2685. ServerAlias www.betpoint.com.mk
  2686. </VirtualHost>
  2687.  
  2688. <Directory /hosting/wwwroot/betpoint.com.mk/phpMyAdmin_BP/>
  2689. <IfModule mod_security2.c>
  2690. SecRuleEngine Off
  2691. </IfModule>
  2692. </Directory>
  2693.  
  2694. <Directory /hosting/wwwroot/betpoint.com.mk/>
  2695. AllowOverride All
  2696. </Directory>
  2697. <VirtualHost *>
  2698. DocumentRoot /hosting/wwwroot/radovis.gov.mk
  2699. ServerName radovis.gov.mk
  2700. <Directory /hosting/wwwroot/radovis.gov.mk>
  2701. allow from all
  2702. Options -Indexes
  2703. </Directory>
  2704. ServerAlias www.radovis.gov.mk
  2705. </VirtualHost>
  2706.  
  2707.  
  2708.  
  2709. <VirtualHost *>
  2710. DocumentRoot /hosting/wwwroot/concept.com.mk
  2711. ServerName concept.com.mk
  2712. <Directory /hosting/wwwroot/concept.com.mk>
  2713. allow from all
  2714. Options -Indexes
  2715. </Directory>
  2716. ServerAlias www.concept.com.mk
  2717. </VirtualHost>
  2718.  
  2719.  
  2720. <VirtualHost *>
  2721. DocumentRoot /hosting/wwwroot/krivapalanka.gov.mk
  2722. ServerName krivapalanka.gov.mk
  2723. <Directory /hosting/wwwroot/krivapalanka.gov.mk>
  2724. allow from all
  2725. Options -Indexes
  2726. </Directory>
  2727. ServerAlias www.krivapalanka.gov.mk
  2728. </VirtualHost>
  2729.  
  2730. <VirtualHost *>
  2731. DocumentRoot /hosting/wwwroot/dnkv.mk
  2732. ServerName dnkv.mk
  2733. <Directory /hosting/wwwroot/dnkv.mk>
  2734. allow from all
  2735. Options -Indexes
  2736. </Directory>
  2737. ServerAlias www.dnkv.mk
  2738. </VirtualHost>
  2739.  
  2740. <VirtualHost *>
  2741. DocumentRoot /hosting/wwwroot/forma.com.mk
  2742. ServerName forma.com.mk
  2743. <Directory /hosting/wwwroot/forma.com.mk>
  2744. allow from all
  2745. Options -Indexes
  2746. </Directory>
  2747. ServerAlias www.forma.com.mk
  2748. </VirtualHost>
  2749.  
  2750. <VirtualHost *>
  2751. DocumentRoot /hosting/wwwroot/tekstil.com.mk
  2752. ServerName tekstil.com.mk
  2753. <Directory /hosting/wwwroot/tekstil.com.mk>
  2754. allow from all
  2755. Options -Indexes
  2756. </Directory>
  2757. ServerAlias www.tekstil.com.mk
  2758. </VirtualHost>
  2759.  
  2760. <Directory /hosting/wwwroot/tekstil.com.mk/>
  2761. AllowOverride All
  2762. </Directory>
  2763.  
  2764. <VirtualHost *>
  2765. DocumentRoot /hosting/wwwroot/krivapalanka.gov.mk/service.krivapalanka.gov.mk
  2766. ServerName service.krivapalanka.gov.mk
  2767. <Directory /hosting/wwwroot/krivapalanka.gov.mk/service.krivapalanka.gov.mk>
  2768. allow from all
  2769. Options -Indexes
  2770. </Directory>
  2771. ServerAlias www.service.krivapalanka.gov.mk
  2772. </VirtualHost>
  2773.  
  2774. <VirtualHost *>
  2775. DocumentRoot /hosting/wwwroot/opstinagpetrov.gov.mk
  2776. ServerName opstinagpetrov.gov.mk
  2777. <Directory /hosting/wwwroot/opstinagpetrov.gov.mk>
  2778. allow from all
  2779. Options -Indexes
  2780. </Directory>
  2781. ServerAlias www.opstinagpetrov.gov.mk
  2782. </VirtualHost>
  2783.  
  2784. <VirtualHost *>
  2785. DocumentRoot /hosting/wwwroot/footballWC2010.t-home.mk
  2786. ServerName footballWC2010.t-home.mk
  2787. <Directory /hosting/wwwroot/footballWC2010.t-home.mk>
  2788. <IfModule mod_security2.c>
  2789. SecRuleEngine Off
  2790. </IfModule>
  2791. allow from all
  2792. Options -Indexes
  2793. </Directory>
  2794. ServerAlias www.footballWC2010.t-home.mk
  2795. </VirtualHost>
  2796.  
  2797.  
  2798. <VirtualHost *>
  2799. DocumentRoot /hosting/wwwroot/restaurantpandonos.com.mk
  2800. ServerName restaurantpandonos.com.mk
  2801. <Directory /hosting/wwwroot/restaurantpandonos.com.mk>
  2802. allow from all
  2803. Options -Indexes
  2804. </Directory>
  2805. ServerAlias www.restaurantpandonos.com.mk
  2806. </VirtualHost>
  2807.  
  2808. <VirtualHost *>
  2809. DocumentRoot /hosting/wwwroot/apps.t-home.mk
  2810. ServerName apps.t-home.mk
  2811. <Directory /hosting/wwwroot/apps.t-home.mk>
  2812. allow from all
  2813. Options -Indexes
  2814. </Directory>
  2815. ServerAlias www.apps.t-home.mk
  2816. </VirtualHost>
  2817.  
  2818. <VirtualHost *>
  2819. DocumentRoot /hosting/wwwroot/mk-osiguruvanje.mk
  2820. ServerName mk-osiguruvanje.mk
  2821. <Directory /hosting/wwwroot/mk-osiguruvanje.mk>
  2822. allow from all
  2823. Options -Indexes
  2824. </Directory>
  2825. ServerAlias www.mk-osiguruvanje.mk
  2826. </VirtualHost>
  2827.  
  2828. <VirtualHost *>
  2829. DocumentRoot /hosting/wwwroot/euroterm.com.mk
  2830. ServerName euroterm.com.mk
  2831. <Directory /hosting/wwwroot/euroterm.com.mk>
  2832. allow from all
  2833. Options -Indexes
  2834. </Directory>
  2835. ServerAlias www.euroterm.com.mk
  2836. </VirtualHost>
  2837.  
  2838. <VirtualHost *>
  2839. DocumentRoot /hosting/wwwroot/orm.org.mk
  2840. ServerName orm.org.mk
  2841. <Directory /hosting/wwwroot/orm.org.mk>
  2842. allow from all
  2843. Options -Indexes
  2844. </Directory>
  2845. ServerAlias www.orm.org.mk
  2846. </VirtualHost>
  2847.  
  2848. <VirtualHost *>
  2849. DocumentRoot /hosting/wwwroot/ohridler.gov.mk
  2850. ServerName ohridler.gov.mk
  2851. <Directory /hosting/wwwroot/ohridler.gov.mk>
  2852. allow from all
  2853. Options -Indexes
  2854. </Directory>
  2855. ServerAlias www.ohridler.gov.mk
  2856. </VirtualHost>
  2857.  
  2858. <VirtualHost *>
  2859. DocumentRoot /hosting/wwwroot/tiping.com.mk
  2860. ServerName tiping.com.mk
  2861. <Directory /hosting/wwwroot/tiping.com.mk>
  2862. allow from all
  2863. Options -Indexes
  2864. Options +FollowSymLinks +SymLinksIfOwnerMatch
  2865. </Directory>
  2866. ServerAlias www.tiping.com.mk
  2867. </VirtualHost>
  2868.  
  2869. <Directory /hosting/wwwroot/tiping.com.mk/>
  2870. AllowOverride All
  2871. </Directory>
  2872.  
  2873.  
  2874. <VirtualHost *>
  2875. DocumentRoot /hosting/wwwroot/deliveryman.com.mk
  2876. ServerName deliveryman.com.mk
  2877. <Directory /hosting/wwwroot/deliveryman.com.mk>
  2878. allow from all
  2879. Options -Indexes
  2880. </Directory>
  2881. ServerAlias www.deliveryman.com.mk
  2882. </VirtualHost>
  2883.  
  2884.  
  2885.  
  2886. <VirtualHost *>
  2887. DocumentRoot /hosting/wwwroot/drsvetlana.com.mk
  2888. ServerName drsvetlana.com.mk
  2889. <Directory /hosting/wwwroot/drsvetlana.com.mk>
  2890. <IfModule mod_security2.c>
  2891. SecRuleEngine Off
  2892. </IfModule>
  2893. allow from all
  2894. Options -Indexes
  2895. Options +FollowSymLinks +SymLinksIfOwnerMatch
  2896. </Directory>
  2897. ServerAlias www.drsvetlana.com.mk
  2898. </VirtualHost>
  2899.  
  2900.  
  2901. <Directory /hosting/wwwroot/drsvetlana.com.mk/>
  2902. AllowOverride All
  2903. </Directory>
  2904.  
  2905. <VirtualHost *>
  2906. DocumentRoot /hosting/wwwroot/disinternacional.com.mk
  2907. ServerName disinternacional.com.mk
  2908. <Directory "/hosting/wwwroot/disinternacional.com.mk">
  2909. allow from all
  2910. Options -Indexes
  2911. <IfModule mod_security2.c>
  2912. SecRuleEngine Off
  2913. </IfModule>
  2914. DirectoryIndex index.php
  2915. </Directory>
  2916. ServerAlias www.disinternacional.com.mk
  2917. </VirtualHost>
  2918.  
  2919. <VirtualHost *>
  2920. DocumentRoot /hosting/wwwroot/piaggio.mk
  2921. ServerName piaggio.mk
  2922. <Directory "/hosting/wwwroot/piaggio.mk">
  2923. allow from all
  2924. Options -Indexes
  2925. </Directory>
  2926. ServerAlias www.piaggio.mk
  2927. </VirtualHost>
  2928. <VirtualHost *>
  2929. DocumentRoot /hosting/wwwroot/ars-ing.mk
  2930. ServerName ars-ing.mk
  2931. <Directory "/hosting/wwwroot/ars-ing.mk">
  2932. allow from all
  2933. Options -Indexes
  2934. </Directory>
  2935. ServerAlias www.ars-ing.mk
  2936. </VirtualHost>
  2937. <VirtualHost *>
  2938. DocumentRoot /hosting/wwwroot/bigorski.org.mk
  2939. ServerName bigorski.org.mk
  2940. <Directory "/hosting/wwwroot/bigorski.org.mk">
  2941. allow from all
  2942. Options -Indexes
  2943. </Directory>
  2944. ServerAlias www.bigorski.org.mk bigorski.mk www.bigorski.mk
  2945. </VirtualHost>
  2946. <VirtualHost *>
  2947. DocumentRoot /hosting/wwwroot/aikido.org.mk
  2948. ServerName aikido.org.mk
  2949. <Directory "/hosting/wwwroot/aikido.org.mk">
  2950. allow from all
  2951. Options -Indexes
  2952. </Directory>
  2953. ServerAlias www.aikido.org.mk
  2954. </VirtualHost>
  2955. <VirtualHost *>
  2956. DocumentRoot /hosting/wwwroot/bopak.com.mk
  2957. ServerName bopak.com.mk
  2958. <Directory "/hosting/wwwroot/bopak.com.mk">
  2959. allow from all
  2960. Options -Indexes
  2961. </Directory>
  2962. ServerAlias www.bopak.com.mk
  2963. </VirtualHost>
  2964.  
  2965. <VirtualHost *>
  2966. DocumentRoot /hosting/wwwroot/in-out.com.mk
  2967. ServerName in-out.com.mk
  2968. <Directory /hosting/wwwroot/in-out.com.mk>
  2969. allow from all
  2970. Options -Indexes
  2971. </Directory>
  2972. ServerAlias www.in-out.com.mk
  2973. </VirtualHost>
  2974.  
  2975. <VirtualHost *>
  2976. DocumentRoot /hosting/wwwroot/asuc.com.mk
  2977. ServerName asuc.com.mk
  2978. <Directory /hosting/wwwroot/asuc.com.mk>
  2979. allow from all
  2980. Options -Indexes
  2981. </Directory>
  2982. ServerAlias www.asuc.com.mk
  2983. </VirtualHost>
  2984. <VirtualHost *>
  2985. DocumentRoot /hosting/wwwroot/asuc.edu.mk
  2986. ServerName asuc.edu.mk
  2987. <Directory "/hosting/wwwroot/asuc.edu.mk">
  2988. allow from all
  2989. Options -Indexes
  2990. </Directory>
  2991. ServerAlias www.asuc.edu.mk
  2992. </VirtualHost>
  2993.  
  2994. <VirtualHost *>
  2995. DocumentRoot /hosting/wwwroot/mkdsumi.com.mk
  2996. ServerName mkdsumi.com.mk
  2997. <Directory /hosting/wwwroot/mkdsumi.com.mk>
  2998. allow from all
  2999. Options -Indexes
  3000. </Directory>
  3001. ServerAlias www.mkdsumi.com.mk
  3002. </VirtualHost>
  3003.  
  3004. <VirtualHost *>
  3005. DocumentRoot /hosting/wwwroot/evropa.com.mk
  3006. ServerName evropa.com.mk
  3007. <Directory /hosting/wwwroot/evropa.com.mk>
  3008. allow from all
  3009. Options -Indexes
  3010. </Directory>
  3011. ServerAlias www.evropa.com.mk
  3012. </VirtualHost>
  3013.  
  3014. #<VirtualHost *>
  3015. #DocumentRoot /hosting/wwwroot/phoenixpharma.com.mk
  3016. #ServerName phoenixpharma.com.mk
  3017. #<Directory /hosting/wwwroot/phoenixpharma.com.mk>
  3018. #Options -Indexes
  3019. #</Directory>
  3020. #ServerAlias www.phoenixpharma.com.mk
  3021. #</VirtualHost>
  3022.  
  3023. <VirtualHost *>
  3024. DocumentRoot /hosting/wwwroot/indcar.mk
  3025. ServerName indcar.mk
  3026. <Directory /hosting/wwwroot/indcar.mk>
  3027. allow from all
  3028. Options -Indexes
  3029. </Directory>
  3030. ServerAlias www.indcar.mk
  3031. </VirtualHost>
  3032. <VirtualHost *>
  3033. DocumentRoot "/hosting/wwwroot/negotino.gov.mk/service.negotino.gov.mk"
  3034. ServerName service.negotino.gov.mk
  3035. <Directory "/hosting/wwwroot/negotino.gov.mk/service.negotino.gov.mk">
  3036. allow from all
  3037. Options -Indexes
  3038. </Directory>
  3039. </VirtualHost>
  3040.  
  3041. <VirtualHost *>
  3042. DocumentRoot /hosting/wwwroot/denmak.com.mk
  3043. ServerName denmak.com.mk
  3044. <Directory /hosting/wwwroot/denmak.com.mk>
  3045. allow from all
  3046. Options -Indexes
  3047. </Directory>
  3048. ServerAlias www.denmak.com.mk
  3049. </VirtualHost>
  3050.  
  3051. <VirtualHost *>
  3052. DocumentRoot /hosting/wwwroot/videx.com.mk
  3053. ServerName videx.com.mk
  3054. <Directory /hosting/wwwroot/videx.com.mk>
  3055. allow from all
  3056. Options -Indexes
  3057. </Directory>
  3058. ServerAlias www.videx.com.mk videx.mk www.videx.mk
  3059. </VirtualHost>
  3060.  
  3061. <VirtualHost *>
  3062. DocumentRoot /hosting/wwwroot/queenshotel.com.mk
  3063. ServerName queenshotel.com.mk
  3064. <Directory /hosting/wwwroot/queenshotel.com.mk>
  3065. allow from all
  3066. Options -Indexes
  3067. </Directory>
  3068. ServerAlias www.queenshotel.com.mk
  3069. </VirtualHost>
  3070.  
  3071. <VirtualHost *>
  3072. DocumentRoot /hosting/wwwroot/albedoinzenering.com.mk
  3073. ServerName albedoinzenering.com.mk
  3074. <Directory /hosting/wwwroot/albedoinzenering.com.mk>
  3075. allow from all
  3076. Options -Indexes
  3077. </Directory>
  3078. ServerAlias www.albedoinzenering.com.mk
  3079. </VirtualHost>
  3080.  
  3081. <VirtualHost *>
  3082. DocumentRoot /hosting/wwwroot/videodata.com.mk
  3083. ServerName videodata.com.mk
  3084. <Directory /hosting/wwwroot/videodata.com.mk>
  3085. allow from all
  3086. Options -Indexes
  3087. </Directory>
  3088. ServerAlias www.videodata.com.mk
  3089. </VirtualHost>
  3090.  
  3091. <VirtualHost *>
  3092. DocumentRoot /hosting/wwwroot/bellydance.mk
  3093. ServerName bellydance.mk
  3094. <Directory /hosting/wwwroot/bellydance.mk>
  3095. allow from all
  3096. Options -Indexes
  3097. </Directory>
  3098. ServerAlias www.bellydance.mk www.orientalentanc.mk orientalentanc.mk
  3099. </VirtualHost>
  3100.  
  3101. <VirtualHost *>
  3102. DocumentRoot /hosting/wwwroot/wurth.com.mk
  3103. ServerName wurth.com.mk
  3104. <Directory /hosting/wwwroot/wurth.com.mk>
  3105. allow from all
  3106. Options -Indexes
  3107. </Directory>
  3108. ServerAlias www.wurth.com.mk
  3109. </VirtualHost>
  3110.  
  3111. <VirtualHost *>
  3112. DocumentRoot /hosting/wwwroot/artpick.com.mk
  3113. ServerName artpick.com.mk
  3114. <Directory /hosting/wwwroot/artpick.com.mk>
  3115. allow from all
  3116. Options -Indexes
  3117. </Directory>
  3118. ServerAlias www.artpick.com.mk
  3119. </VirtualHost>
  3120.  
  3121. <VirtualHost *>
  3122. DocumentRoot /hosting/wwwroot/czr.com.mk
  3123. ServerName czr.com.mk
  3124. <Directory /hosting/wwwroot/czr.com.mk>
  3125. allow from all
  3126. Options -Indexes
  3127. </Directory>
  3128. ServerAlias www.czr.com.mk
  3129. </VirtualHost>
  3130.  
  3131. <VirtualHost *>
  3132. DocumentRoot /hosting/wwwroot/demirkapija.gov.mk
  3133. ServerName demirkapija.gov.mk
  3134. <Directory /hosting/wwwroot/demirkapija.gov.mk>
  3135. allow from all
  3136. Options -Indexes
  3137. </Directory>
  3138. ServerAlias www.demirkapija.gov.mk
  3139. </VirtualHost>
  3140.  
  3141. <VirtualHost *>
  3142. DocumentRoot /hosting/wwwroot/newstar.com.mk
  3143. ServerName newstar.com.mk
  3144. <Directory /hosting/wwwroot/newstar.com.mk>
  3145. allow from all
  3146. Options -Indexes
  3147. </Directory>
  3148. ServerAlias www.newstar.com.mk www.hotelnewstar.com.mk hotelnewstar.com.mk
  3149. </VirtualHost>
  3150.  
  3151. <VirtualHost *>
  3152. DocumentRoot /hosting/wwwroot/apartmani-marija.mk
  3153. ServerName apartmani-marija.mk
  3154. <Directory /hosting/wwwroot/apartmani-marija.mk>
  3155. allow from all
  3156. Options -Indexes
  3157. </Directory>
  3158. ServerAlias www.apartmani-marija.mk
  3159. </VirtualHost>
  3160.  
  3161. <VirtualHost *>
  3162. DocumentRoot /hosting/wwwroot/sate.com.mk
  3163. ServerName sate.com.mk
  3164. <Directory /hosting/wwwroot/sate.com.mk>
  3165. allow from all
  3166. Options -Indexes
  3167. </Directory>
  3168. ServerAlias www.sate.com.mk
  3169. </VirtualHost>
  3170.  
  3171. <VirtualHost *>
  3172. DocumentRoot /hosting/wwwroot/itd.mk
  3173. ServerName itd.mk
  3174. <Directory /hosting/wwwroot/itd.mk>
  3175. allow from all
  3176. Options -Indexes
  3177. </Directory>
  3178. ServerAlias www.itd.mk
  3179. </VirtualHost>
  3180.  
  3181. <VirtualHost *>
  3182. DocumentRoot /hosting/wwwroot/califit.com.mk
  3183. ServerName califit.com.mk
  3184. <Directory /hosting/wwwroot/califit.com.mk>
  3185. allow from all
  3186. Options -Indexes
  3187. </Directory>
  3188. ServerAlias www.califit.com.mk califitsport.mk www.califitsport.mk califitsport.com.mk www.califitsport.com.mk califit.mk www.califit.mk
  3189. </VirtualHost>
  3190.  
  3191. <VirtualHost *>
  3192. DocumentRoot /hosting/wwwroot/drbatz.com.mk
  3193. ServerName drbatz.com.mk
  3194. <Directory /hosting/wwwroot/drbatz.com.mk>
  3195. allow from all
  3196. Options -Indexes
  3197. </Directory>
  3198. ServerAlias www.drbatz.com.mk batz.mk www.batz.mk drbatz.mk www.drbatz.mk batz.com.mk www.batz.com.mk
  3199. </VirtualHost>
  3200. <VirtualHost *>
  3201. DocumentRoot "/hosting/wwwroot/globalex.com.mk "
  3202. ServerName globalex.com.mk
  3203. <Directory "/hosting/wwwroot/globalex.com.mk ">
  3204. allow from all
  3205. Options +Indexes
  3206. </Directory>
  3207. ServerAlias www.globalex.com.mk
  3208. </VirtualHost>
  3209. <VirtualHost *>
  3210. DocumentRoot /hosting/wwwroot/amfora.com.mk
  3211. ServerName amfora.com.mk
  3212. <Directory "/hosting/wwwroot/amfora.com.mk">
  3213. allow from all
  3214. Options +Indexes
  3215. </Directory>
  3216. ServerAlias www.amfora.com.mk
  3217. </VirtualHost>
  3218. <VirtualHost *>
  3219. DocumentRoot /hosting/wwwroot/victoriawhite.mk
  3220. ServerName victoriawhite.mk
  3221. <Directory "/hosting/wwwroot/victoriawhite.mk">
  3222. allow from all
  3223. Options +Indexes
  3224. </Directory>
  3225. ServerAlias www.victoriawhite.mk
  3226. </VirtualHost>
  3227.  
  3228. <VirtualHost *>
  3229. DocumentRoot /hosting/wwwroot/aplus.com.mk
  3230. ServerName aplus.com.mk
  3231. <Directory /hosting/wwwroot/aplus.com.mk>
  3232. allow from all
  3233. Options -Indexes
  3234. </Directory>
  3235. ServerAlias www.aplus.com.mk
  3236. </VirtualHost>
  3237.  
  3238. <VirtualHost *>
  3239. DocumentRoot /hosting/wwwroot/kvalitet.com.mk
  3240. ServerName kvalitet.com.mk
  3241. <Directory /hosting/wwwroot/kvalitet.com.mk>
  3242. allow from all
  3243. Options -Indexes
  3244. </Directory>
  3245. ServerAlias www.kvalitet.com.mk
  3246. </VirtualHost>
  3247.  
  3248. <VirtualHost *>
  3249. DocumentRoot /hosting/wwwroot/bibliotekaradovis.org.mk
  3250. ServerName bibliotekaradovis.org.mk
  3251. <Directory /hosting/wwwroot/bibliotekaradovis.org.mk>
  3252. allow from all
  3253. Options -Indexes
  3254. </Directory>
  3255. ServerAlias www.bibliotekaradovis.org.mk
  3256. </VirtualHost>
  3257.  
  3258. <VirtualHost *>
  3259. DocumentRoot /hosting/wwwroot/bibliotekaradovis-infopoint.mk
  3260. ServerName bibliotekaradovis-infopoint.mk
  3261. <Directory /hosting/wwwroot/bibliotekaradovis-infopoint.mk>
  3262. allow from all
  3263. Options -Indexes
  3264. </Directory>
  3265. ServerAlias www.bibliotekaradovis-infopoint.mk
  3266. </VirtualHost>
  3267.  
  3268. <VirtualHost *>
  3269. DocumentRoot /hosting/wwwroot/liting.com.mk
  3270. ServerName liting.com.mk
  3271. <Directory /hosting/wwwroot/liting.com.mk>
  3272. allow from all
  3273. Options -Indexes
  3274. </Directory>
  3275. ServerAlias www.liting.com.mk
  3276. </VirtualHost>
  3277.  
  3278. <VirtualHost *>
  3279. DocumentRoot /hosting/wwwroot/nuub.mk
  3280. ServerName nuub.mk
  3281. <Directory /hosting/wwwroot/nuub.mk>
  3282. allow from all
  3283. Options -Indexes
  3284. </Directory>
  3285. ServerAlias www.nuub.mk
  3286. </VirtualHost>
  3287.  
  3288.  
  3289. <VirtualHost *>
  3290. DocumentRoot /hosting/wwwroot/slavijaspektar.com.mk
  3291. ServerName slavijaspektar.com.mk
  3292. <Directory /hosting/wwwroot/slavijaspektar.com.mk>
  3293. allow from all
  3294. Options -Indexes
  3295. </Directory>
  3296. ServerAlias www.slavijaspektar.com.mk
  3297. </VirtualHost>
  3298.  
  3299. <VirtualHost *>
  3300. DocumentRoot /hosting/wwwroot/textme.mk
  3301. ServerName textme.mk
  3302. <Directory /hosting/wwwroot/textme.mk>
  3303. allow from all
  3304. Options -Indexes
  3305. </Directory>
  3306. ServerAlias www.textme.mk
  3307. </VirtualHost>
  3308.  
  3309. <VirtualHost *>
  3310. DocumentRoot /hosting/wwwroot/makedonskakamenica.gov.mk
  3311. ServerName makedonskakamenica.gov.mk
  3312. <Directory /hosting/wwwroot/makedonskakamenica.gov.mk>
  3313. allow from all
  3314. Options -Indexes
  3315. </Directory>
  3316. ServerAlias www.makedonskakamenica.gov.mk
  3317. </VirtualHost>
  3318.  
  3319. <VirtualHost *>
  3320. DocumentRoot /hosting/wwwroot/studenicani.gov.mk/servis.studenicani.gov.mk
  3321. ServerName servis.studenicani.gov.mk
  3322. ErrorLog /var/log/httpd/servis.studenicani.gov.mk.error.log
  3323. CustomLog /var/log/httpd/servis.studenicani.gov.mk.access.log combined
  3324. <Directory /hosting/wwwroot/studenicani.gov.mk/servis.studenicani.gov.mk>
  3325. allow from all
  3326. Options -Indexes
  3327. </Directory>
  3328. ServerAlias www.servis.studenicani.gov.mk
  3329. </VirtualHost>
  3330.  
  3331. <VirtualHost *>
  3332. DocumentRoot /hosting/wwwroot/svetinikole.gov.mk/servis.svetinikole.gov.mk
  3333. ServerName servis.svetinikole.gov.mk
  3334. ErrorLog /var/log/httpd/servis.svetinikole.gov.mk.error.log
  3335. CustomLog /var/log/httpd/servis.svetinikole.gov.mk.access.log combined
  3336. <Directory /hosting/wwwroot/svetinikole.gov.mk/servis.svetinikole.gov.mk>
  3337. allow from all
  3338. Options -Indexes
  3339. </Directory>
  3340. ServerAlias www.servis.svetinikole.gov.mk
  3341. </VirtualHost>
  3342. <VirtualHost *>
  3343. DocumentRoot /hosting/wwwroot/visitpelagonia.mk
  3344. ServerName visitpelagonia.mk
  3345. ErrorLog /var/log/httpd/visitpelagonia.mk.error.log
  3346. CustomLog /var/log/httpd/visitpelagonia.mk.access.log combined
  3347. <Directory /hosting/wwwroot/visitpelagonia.mk>
  3348. allow from all
  3349. Options -Indexes
  3350. </Directory>
  3351. ServerAlias www.visitpelagonia.mk
  3352. </VirtualHost>
  3353.  
  3354. <VirtualHost *>
  3355. DocumentRoot /hosting/wwwroot/sportin.com.mk
  3356. ServerName sportin.com.mk
  3357. ErrorLog /var/log/httpd/sportin.com.mk.error.log
  3358. CustomLog /var/log/httpd/sportin.com.mk.access.log combined
  3359. <Directory /hosting/wwwroot/sportin.com.mk>
  3360. allow from all
  3361. Options -Indexes
  3362. </Directory>
  3363. ServerAlias www.sportin.com.mk
  3364. </VirtualHost>
  3365.  
  3366. <VirtualHost *>
  3367. DocumentRoot /hosting/wwwroot/rokada.com.mk
  3368. ServerName rokada.com.mk
  3369. ErrorLog /var/log/httpd/rokada.com.mk.error.log
  3370. CustomLog /var/log/httpd/rokada.com.mk.access.log combined
  3371. <Directory /hosting/wwwroot/rokada.com.mk>
  3372. allow from all
  3373. Options -Indexes
  3374. </Directory>
  3375. ServerAlias www.rokada.com.mk
  3376. </VirtualHost>
  3377.  
  3378. <VirtualHost *>
  3379. DocumentRoot /hosting/wwwroot/igroteka.mk
  3380. ServerName igroteka.mk
  3381. ErrorLog /var/log/httpd/igroteka.mk.error.log
  3382. CustomLog /var/log/httpd/igroteka.mk.access.log combined
  3383. <Directory /hosting/wwwroot/igroteka.mk>
  3384. allow from all
  3385. Options -Indexes
  3386. </Directory>
  3387. ServerAlias www.igroteka.mk
  3388. </VirtualHost>
  3389.  
  3390. <VirtualHost *>
  3391. DocumentRoot /hosting/wwwroot/silhouette.com.mk
  3392. ServerName silhouette.com.mk
  3393. ErrorLog /var/log/httpd/silhouette.com.mk.error.log
  3394. CustomLog /var/log/httpd/silhouette.com.mk.access.log combined
  3395. <Directory /hosting/wwwroot/silhouette.com.mk>
  3396. allow from all
  3397. Options -Indexes
  3398. </Directory>
  3399. ServerAlias www.silhouette.com.mk
  3400. </VirtualHost>
  3401.  
  3402.  
  3403. <VirtualHost *>
  3404. DocumentRoot /hosting/wwwroot/mak-jams.mk
  3405. ServerName mak-jams.mk
  3406. ErrorLog /var/log/httpd/mak-jams.mk.error.log
  3407. CustomLog /var/log/httpd/mak-jams.mk.access.log combined
  3408. <Directory /hosting/wwwroot/mak-jams.mk>
  3409. allow from all
  3410. Options -Indexes
  3411. </Directory>
  3412. ServerAlias www.mak-jams.mk
  3413. </VirtualHost>
  3414.  
  3415. <VirtualHost *>
  3416. DocumentRoot /hosting/wwwroot/stobiwinery.mk
  3417. ServerName stobiwinery.mk
  3418. ErrorLog /var/log/httpd/stobiwinery.mk.error.log
  3419. CustomLog /var/log/httpd/stobiwinery.mk.access.log combined
  3420. <Directory /hosting/wwwroot/stobiwinery.mk>
  3421. allow from all
  3422. Options -Indexes
  3423. </Directory>
  3424. ServerAlias www.stobiwinery.mk
  3425. </VirtualHost>
  3426.  
  3427. <VirtualHost *>
  3428. DocumentRoot /hosting/wwwroot/projectnet.t-home.mk
  3429. ServerName projectnet.t-home.mk
  3430. #ErrorLog /var/log/httpd/stobiwinery.mk.error.log
  3431. #CustomLog /var/log/httpd/stobiwinery.mk.access.log combined
  3432. <Directory /hosting/wwwroot/projectnet.t-home.mk>
  3433. allow from all
  3434. Options -Indexes
  3435. </Directory>
  3436. ServerAlias www.projectnet.t-home.mk
  3437. </VirtualHost>
  3438. <VirtualHost *>
  3439. DocumentRoot /hosting/wwwroot/gmm.com.mk
  3440. ServerName gmm.com.mk
  3441. ErrorLog /var/log/httpd/gmm.com.mk.error.log
  3442. CustomLog /var/log/httpd/gmm.com.mk.access.log combined
  3443. <Directory /hosting/wwwroot/gmm.com.mk>
  3444. allow from all
  3445. Options -Indexes
  3446. </Directory>
  3447. ServerAlias www.gmm.com.mk
  3448. Redirect / "http://uhost.mk/~gmm/?"
  3449. </VirtualHost>
  3450.  
  3451. <VirtualHost *>
  3452. DocumentRoot /hosting/wwwroot/preda.mk
  3453. ServerName preda.mk
  3454. ErrorLog /var/log/httpd/preda.mk.error.log
  3455. CustomLog /var/log/httpd/preda.mk.access.log combined
  3456. <Directory /hosting/wwwroot/preda.mk>
  3457. allow from all
  3458. Options -Indexes
  3459. </Directory>
  3460. ServerAlias www.preda.mk
  3461. </VirtualHost>
  3462.  
  3463. <VirtualHost *>
  3464. DocumentRoot /hosting/wwwroot/bolnica.org.mk
  3465. ServerName bolnica.org.mk
  3466. ErrorLog /var/log/httpd/bolnica.org.mk.error.log
  3467. CustomLog /var/log/httpd/bolnica.org.mk.access.log combined
  3468. <Directory /hosting/wwwroot/bolnica.org.mk>
  3469. allow from all
  3470. Options -Indexes
  3471. </Directory>
  3472. ServerAlias www.bolnica.org.mk
  3473. </VirtualHost>
  3474.  
  3475. <VirtualHost *>
  3476. DocumentRoot /hosting/wwwroot/sugsvladotasevski.edu.mk
  3477. ServerName sugsvladotasevski.edu.mk
  3478. ErrorLog /var/log/httpd/sugsvladotasevski.edu.mk.error.log
  3479. CustomLog /var/log/httpd/sugsvladotasevski.edu.mk.access.log combined
  3480. <Directory /hosting/wwwroot/sugsvladotasevski.edu.mk>
  3481. allow from all
  3482. Options -Indexes
  3483. </Directory>
  3484. ServerAlias www.sugsvladotasevski.edu.mk
  3485. </VirtualHost>
  3486.  
  3487. <VirtualHost *>
  3488. DocumentRoot /hosting/wwwroot/badel1862.com.mk
  3489. ServerName badel1862.com.mk
  3490. ErrorLog /var/log/httpd/badel1862.com.mk.error.log
  3491. CustomLog /var/log/httpd/badel1862.com.mk.access.log combined
  3492. <Directory /hosting/wwwroot/badel1862.com.mk>
  3493. allow from all
  3494. Options -Indexes
  3495. </Directory>
  3496. ServerAlias www.badel1862.com.mk
  3497. </VirtualHost>
  3498.  
  3499. <VirtualHost *>
  3500. DocumentRoot /hosting/wwwroot/kultura.gov.mk
  3501. ServerName kultura.gov.mk
  3502. ErrorLog /var/log/httpd/kultura.gov.mk.error.log
  3503. CustomLog /var/log/httpd/kultura.gov.mk.access.log combined
  3504. <Directory /hosting/wwwroot/kultura.gov.mk>
  3505. allow from all
  3506. Options -Indexes
  3507. </Directory>
  3508. ServerAlias www1.kultura.gov.mk
  3509. </VirtualHost>
  3510.  
  3511. <VirtualHost *>
  3512. DocumentRoot /hosting/wwwroot/horizonti.org.mk
  3513. ServerName horizonti.org.mk
  3514. ErrorLog /var/log/httpd/horizonti.org.mk.error.log
  3515. CustomLog /var/log/httpd/horizonti.org.mk.access.log combined
  3516. <Directory /hosting/wwwroot/horizonti.org.mk>
  3517. allow from all
  3518. Options -Indexes
  3519. </Directory>
  3520. ServerAlias www.horizonti.org.mk
  3521. </VirtualHost>
  3522.  
  3523. <VirtualHost *>
  3524. DocumentRoot /hosting/wwwroot/kaunt.mk
  3525. ServerName kaunt.mk
  3526. ErrorLog /var/log/httpd/kaunt.mk.error.log
  3527. CustomLog /var/log/httpd/kaunt.mk.access.log combined
  3528. <Directory /hosting/wwwroot/kaunt.mk>
  3529. allow from all
  3530. Options -Indexes
  3531. </Directory>
  3532. ServerAlias www.kaunt.mk
  3533. </VirtualHost>
  3534.  
  3535. <VirtualHost *>
  3536. DocumentRoot /hosting/wwwroot/reishi.com.mk
  3537. ServerName reishi.com.mk
  3538. ErrorLog /var/log/httpd/reishi.com.mk.error.log
  3539. CustomLog /var/log/httpd/reishi.com.mk.access.log combined
  3540. <Directory /hosting/wwwroot/reishi.com.mk>
  3541. allow from all
  3542. Options -Indexes
  3543. </Directory>
  3544. ServerAlias www.reishi.com.mk
  3545. </VirtualHost>
  3546.  
  3547. <VirtualHost *>
  3548. DocumentRoot /hosting/wwwroot/adrenaline.com.mk
  3549. ServerName adrenaline.com.mk
  3550. ErrorLog /var/log/httpd/adrenaline.com.mk.error.log
  3551. CustomLog /var/log/httpd/adrenaline.com.mk.access.log combined
  3552. <Directory /hosting/wwwroot/adrenaline.com.mk>
  3553. allow from all
  3554. Options -Indexes
  3555. </Directory>
  3556. ServerAlias www.adrenaline.com.mk
  3557. </VirtualHost>
  3558.  
  3559. <VirtualHost *>
  3560. DocumentRoot /hosting/wwwroot/elidatours-ohrid.com.mk
  3561. ServerName elidatours-ohrid.com.mk
  3562. ErrorLog /var/log/httpd/elidatours-ohrid.com.mk.error.log
  3563. CustomLog /var/log/httpd/elidatours-ohrid.com.mk.access.log combined
  3564. <Directory /hosting/wwwroot/elidatours-ohrid.com.mk>
  3565. allow from all
  3566. Options -Indexes
  3567. </Directory>
  3568. ServerAlias www.elidatours-ohrid.com.mk
  3569. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement