Advertisement
Guest User

Untitled

a guest
Jul 15th, 2020
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.69 KB | None | 0 0
  1. #
  2. # This is the main Apache HTTP server configuration file. It contains the
  3. # configuration directives that give the server its instructions.
  4. # See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
  5. # In particular, see
  6. # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
  7. # for a discussion of each configuration directive.
  8. #
  9. # Do NOT simply read the instructions in here without understanding
  10. # what they do. They're here only as hints or reminders. If you are unsure
  11. # consult the online docs. You have been warned.
  12. #
  13. # Configuration and logfile names: If the filenames you specify for many
  14. # of the server's control files begin with "/" (or "drive:/" for Win32), the
  15. # server will use that explicit path. If the filenames do *not* begin
  16. # with "/", the value of ServerRoot is prepended -- so "logs/foo_log"
  17. # with ServerRoot set to "/Applications/MAMP/Library" will be interpreted by the
  18. # server as "/Applications/MAMP/Library/logs/foo_log".
  19.  
  20. #
  21. # ServerRoot: The top of the directory tree under which the server's
  22. # configuration, error, and log files are kept.
  23. #
  24. # Do not add a slash at the end of the directory path. If you point
  25. # ServerRoot at a non-local disk, be sure to point the LockFile directive
  26. # at a local disk. If you wish to share the same ServerRoot for multiple
  27. # httpd daemons, you will need to change at least LockFile and PidFile.
  28. #
  29. ServerRoot "/Applications/MAMP/Library"
  30.  
  31. #
  32. # PidFile: The file in which the server should record its process
  33. # identification number when it starts.
  34. #
  35. <IfModule !mpm_netware.c>
  36. PidFile logs/httpd.pid
  37. </IfModule>
  38.  
  39. #
  40. # Listen: Allows you to bind Apache to specific IP addresses and/or
  41. # ports, instead of the default. See also the <VirtualHost>
  42. # directive.
  43. #
  44. # Change this to Listen on specific IP addresses as shown below to
  45. # prevent Apache from glomming onto all bound IP addresses.
  46. #
  47. #Listen 12.34.56.78:80
  48. Listen 8888
  49.  
  50. #
  51. # Dynamic Shared Object (DSO) Support
  52. #
  53. # To be able to use the functionality of a module which was built as a DSO you
  54. # have to place corresponding `LoadModule' lines at this location so the
  55. # directives contained in it are actually available _before_ they are used.
  56. # Statically compiled modules (those listed by `httpd -l') do not need
  57. # to be loaded here.
  58. #
  59. # Example:
  60. # LoadModule foo_module modules/mod_foo.so
  61. #
  62. LoadModule authn_file_module modules/mod_authn_file.so
  63. LoadModule authn_dbm_module modules/mod_authn_dbm.so
  64. LoadModule authn_anon_module modules/mod_authn_anon.so
  65. LoadModule authn_dbd_module modules/mod_authn_dbd.so
  66. LoadModule authn_default_module modules/mod_authn_default.so
  67. LoadModule authz_host_module modules/mod_authz_host.so
  68. LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
  69. LoadModule authz_user_module modules/mod_authz_user.so
  70. LoadModule authz_dbm_module modules/mod_authz_dbm.so
  71. LoadModule authz_owner_module modules/mod_authz_owner.so
  72. LoadModule authz_default_module modules/mod_authz_default.so
  73. LoadModule auth_basic_module modules/mod_auth_basic.so
  74. LoadModule auth_digest_module modules/mod_auth_digest.so
  75. LoadModule file_cache_module modules/mod_file_cache.so
  76. LoadModule cache_module modules/mod_cache.so
  77. LoadModule disk_cache_module modules/mod_disk_cache.so
  78. LoadModule mem_cache_module modules/mod_mem_cache.so
  79. LoadModule dbd_module modules/mod_dbd.so
  80. LoadModule bucketeer_module modules/mod_bucketeer.so
  81. LoadModule dumpio_module modules/mod_dumpio.so
  82. LoadModule echo_module modules/mod_echo.so
  83. LoadModule case_filter_module modules/mod_case_filter.so
  84. LoadModule case_filter_in_module modules/mod_case_filter_in.so
  85. LoadModule reqtimeout_module modules/mod_reqtimeout.so
  86. LoadModule ext_filter_module modules/mod_ext_filter.so
  87. LoadModule include_module modules/mod_include.so
  88. LoadModule filter_module modules/mod_filter.so
  89. LoadModule substitute_module modules/mod_substitute.so
  90. LoadModule charset_lite_module modules/mod_charset_lite.so
  91. LoadModule deflate_module modules/mod_deflate.so
  92. LoadModule log_config_module modules/mod_log_config.so
  93. LoadModule logio_module modules/mod_logio.so
  94. LoadModule env_module modules/mod_env.so
  95. LoadModule mime_magic_module modules/mod_mime_magic.so
  96. LoadModule cern_meta_module modules/mod_cern_meta.so
  97. LoadModule expires_module modules/mod_expires.so
  98. LoadModule headers_module modules/mod_headers.so
  99. LoadModule ident_module modules/mod_ident.so
  100. LoadModule usertrack_module modules/mod_usertrack.so
  101. #LoadModule unique_id_module modules/mod_unique_id.so
  102. LoadModule setenvif_module modules/mod_setenvif.so
  103. LoadModule version_module modules/mod_version.so
  104. LoadModule proxy_module modules/mod_proxy.so
  105. LoadModule proxy_connect_module modules/mod_proxy_connect.so
  106. LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
  107. LoadModule proxy_http_module modules/mod_proxy_http.so
  108. LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
  109. LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
  110. LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
  111. #
  112. # Starting v5.7 ssl_module is statically compiled into Apache and
  113. # doesn't need to be enabled / can not be disabled.
  114. #
  115. LoadModule mime_module modules/mod_mime.so
  116. LoadModule dav_module modules/mod_dav.so
  117. LoadModule status_module modules/mod_status.so
  118. LoadModule autoindex_module modules/mod_autoindex.so
  119. LoadModule asis_module modules/mod_asis.so
  120. LoadModule info_module modules/mod_info.so
  121. LoadModule cgi_module modules/mod_cgi.so
  122. LoadModule fastcgi_module modules/mod_fastcgi.so
  123. LoadModule cgid_module modules/mod_cgid.so
  124. LoadModule dav_fs_module modules/mod_dav_fs.so
  125. LoadModule vhost_alias_module modules/mod_vhost_alias.so
  126. LoadModule negotiation_module modules/mod_negotiation.so
  127. LoadModule dir_module modules/mod_dir.so
  128. LoadModule imagemap_module modules/mod_imagemap.so
  129. LoadModule actions_module modules/mod_actions.so
  130. LoadModule speling_module modules/mod_speling.so
  131. LoadModule userdir_module modules/mod_userdir.so
  132. LoadModule alias_module modules/mod_alias.so
  133. LoadModule rewrite_module modules/mod_rewrite.so
  134. LoadModule perl_module modules/mod_perl.so
  135. LoadModule wsgi_module modules/mod_wsgi.so
  136. LoadModule xsendfile_module modules/mod_xsendfile.so
  137.  
  138. LoadModule php7_module /Applications/MAMP/bin/php/php7.4.2/modules/libphp7.so
  139.  
  140. #
  141. AddType application/x-httpd-php .php .phtml
  142.  
  143. <IfModule !mpm_netware_module>
  144. <IfModule !mpm_winnt_module>
  145. #
  146. # If you wish httpd to run as a different user or group, you must run
  147. # httpd as root initially and it will switch.
  148. #
  149. # User/Group: The name (or #number) of the user/group to run httpd as.
  150. # It is usually good practice to create a dedicated user and group for
  151. # running httpd, as with most system services.
  152. #
  153. User lli
  154. Group #-1
  155.  
  156. </IfModule>
  157. </IfModule>
  158.  
  159. <IfModule xsendfile_module>
  160. XSendFile on
  161. </IfModule>
  162.  
  163. # 'Main' server configuration
  164. #
  165. # The directives in this section set up the values used by the 'main'
  166. # server, which responds to any requests that aren't handled by a
  167. # <VirtualHost> definition. These values also provide defaults for
  168. # any <VirtualHost> containers you may define later in the file.
  169. #
  170. # All of these directives may appear inside <VirtualHost> containers,
  171. # in which case these default settings will be overridden for the
  172. # virtual host being defined.
  173. #
  174.  
  175. #
  176. # ServerAdmin: Your address, where problems with the server should be
  177. # e-mailed. This address appears on some server-generated pages, such
  178. # as error documents. e.g. admin@your-domain.com
  179. #
  180. ServerAdmin you@example.com
  181.  
  182. #
  183. # ServerName gives the name and port that the server uses to identify itself.
  184. # This can often be determined automatically, but we recommend you specify
  185. # it explicitly to prevent problems during startup.
  186. #
  187. # If your host doesn't have a registered DNS name, enter its IP address here.
  188. #
  189. ServerName localhost:8888
  190.  
  191. #
  192. # DocumentRoot: The directory out of which you will serve your
  193. # documents. By default, all requests are taken from this directory, but
  194. # symbolic links and aliases may be used to point to other locations.
  195. #
  196. # MAMP DOCUMENT_ROOT !! Don't remove this line !!
  197. DocumentRoot "/Applications/MAMP/htdocs/example"
  198.  
  199. #
  200. # Each directory to which Apache has access can be configured with respect
  201. # to which services and features are allowed and/or disabled in that
  202. # directory (and its subdirectories).
  203. #
  204. # First, we configure the "default" to be a very restrictive set of
  205. # features.
  206. #
  207. <Directory />
  208. Options Indexes FollowSymLinks
  209. AllowOverride None
  210. </Directory>
  211.  
  212. #
  213. # Note that from this point forward you must specifically allow
  214. # particular features to be enabled - so if something's not working as
  215. # you might expect, make sure that you have specifically enabled it
  216. # below.
  217. #
  218.  
  219. #
  220. # This should be changed to whatever you set DocumentRoot to.
  221. #
  222. <Directory "/Applications/MAMP/htdocs/example">
  223. #
  224. # Possible values for the Options directive are "None", "All",
  225. # or any combination of:
  226. # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
  227. #
  228. # Note that "MultiViews" must be named *explicitly* --- "Options All"
  229. # doesn't give it to you.
  230. #
  231. # The Options directive is both complicated and important. Please see
  232. # http://httpd.apache.org/docs/2.2/mod/core.html#options
  233. # for more information.
  234. #
  235. Options All
  236.  
  237. #
  238. # AllowOverride controls what directives may be placed in .htaccess files.
  239. # It can be "All", "None", or any combination of the keywords:
  240. # Options FileInfo AuthConfig Limit
  241. #
  242. AllowOverride All
  243.  
  244. #
  245. # Controls who can get stuff from this server.
  246. #
  247. Order allow,deny
  248. Allow from all
  249.  
  250. XSendFilePath "/Applications/MAMP/htdocs/example"
  251. </Directory>
  252.  
  253. #
  254. # DirectoryIndex: sets the file that Apache will serve if a directory
  255. # is requested.
  256. #
  257. <IfModule dir_module>
  258. DirectoryIndex index.html
  259.  
  260. <IfModule perl_module>
  261. DirectoryIndex index.pl
  262. </IfModule>
  263.  
  264. <IfModule wsgi_module>
  265. DirectoryIndex index.wsgi index.py
  266. </IfModule>
  267.  
  268. </IfModule>
  269.  
  270. #
  271. # AccessFileName: The name of the file to look for in each directory
  272. # for additional configuration directives. See also the AllowOverride
  273. # directive.
  274. #
  275. AccessFileName .htaccess
  276.  
  277. #
  278. # The following lines prevent .htaccess and .htpasswd files from being
  279. # viewed by Web clients.
  280. #
  281. <FilesMatch "^\.ht">
  282. Order allow,deny
  283. Deny from all
  284. Satisfy All
  285. </FilesMatch>
  286.  
  287. <Files ~ "^\.DS_Store">
  288. Order allow,deny
  289. Deny from all
  290. </Files>
  291.  
  292. #
  293. # ErrorLog: The location of the error log file.
  294. # If you do not specify an ErrorLog directive within a <VirtualHost>
  295. # container, error messages relating to that virtual host will be
  296. # logged here. If you *do* define an error logfile for a <VirtualHost>
  297. # container, that host's errors will be logged there and not here.
  298. #
  299. ErrorLog "/Applications/MAMP/logs/apache_error.log"
  300.  
  301. #
  302. # LogLevel: Control the number of messages logged to the error_log.
  303. # Possible values include: debug, info, notice, warn, error, crit,
  304. # alert, emerg.
  305. #
  306. LogLevel error
  307.  
  308. <IfModule log_config_module>
  309. #
  310. # The following directives define some format nicknames for use with
  311. # a CustomLog directive (see below).
  312. #
  313. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  314. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  315.  
  316. <IfModule logio_module>
  317. # You need to enable mod_logio.c to use %I and %O
  318. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
  319. </IfModule>
  320.  
  321. #
  322. # The location and format of the access logfile (Common Logfile Format).
  323. # If you do not define any access logfiles within a <VirtualHost>
  324. # container, they will be logged here. Contrariwise, if you *do*
  325. # define per-<VirtualHost> access logfiles, transactions will be
  326. # logged therein and *not* in this file.
  327. #
  328. #CustomLog "/Applications/MAMP/logs/apache_access.log" common
  329.  
  330. #
  331. # If you prefer a logfile with access, agent, and referer information
  332. # (Combined Logfile Format) you can use the following directive.
  333. #
  334. #CustomLog "/Applications/MAMP/logs/apache_access.log" combined
  335. </IfModule>
  336.  
  337. <IfModule alias_module>
  338. #
  339. # Redirect: Allows you to tell clients about documents that used to
  340. # exist in your server's namespace, but do not anymore. The client
  341. # will make a new request for the document at its new location.
  342. # Example:
  343. # Redirect permanent /foo http://www.example.com/bar
  344.  
  345. #
  346. # Alias: Maps web paths into filesystem paths and is used to
  347. # access content that does not live under the DocumentRoot.
  348. # Example:
  349. # Alias /webpath /full/filesystem/path
  350. #
  351. # If you include a trailing / on /webpath then the server will
  352. # require it to be present in the URL. You will also likely
  353. # need to provide a <Directory> section to allow access to
  354. # the filesystem path.
  355. #
  356. # We include the /icons/ alias for FancyIndexed directory listings. If you
  357. # do not use FancyIndexing, you may comment this out.
  358. #
  359.  
  360. Alias /favicon.ico "/Applications/MAMP/bin/favicon.ico"
  361.  
  362. Alias /icons/ "/Applications/MAMP/Library/icons/"
  363.  
  364. <Directory "/Applications/MAMP/Library/icons">
  365. Options Indexes MultiViews
  366. AllowOverride None
  367. Order allow,deny
  368. Allow from all
  369. </Directory>
  370.  
  371. Alias /phpMyAdmin "/Applications/MAMP/bin/phpMyAdmin"
  372. Alias /phpmyadmin "/Applications/MAMP/bin/phpMyAdmin"
  373.  
  374. <Directory "/Applications/MAMP/bin/phpMyAdmin">
  375. Options Indexes MultiViews
  376. AllowOverride None
  377. Order allow,deny
  378. Allow from all
  379. </Directory>
  380.  
  381. Alias /phpPgAdmin "/Applications/MAMP/bin/phpPgAdmin"
  382. Alias /phppgadmin "/Applications/MAMP/bin/phpPgAdmin"
  383.  
  384. <Directory "/Applications/MAMP/bin/phpPgAdmin">
  385. Options Indexes MultiViews
  386. AllowOverride None
  387. Order allow,deny
  388. Allow from all
  389. </Directory>
  390.  
  391. Alias /phpLiteAdmin "/Applications/MAMP/bin/phpLiteAdmin"
  392. Alias /phpliteadmin "/Applications/MAMP/bin/phpLiteAdmin"
  393.  
  394. <Directory "/Applications/MAMP/bin/phpLiteAdmin">
  395. Options Indexes MultiViews
  396. AllowOverride None
  397. Order allow,deny
  398. Allow from all
  399. </Directory>
  400.  
  401. Alias /MAMP "/Applications/MAMP/bin/mamp"
  402.  
  403. <Directory "/Applications/MAMP/bin/mamp">
  404. Options Indexes MultiViews
  405. AllowOverride None
  406. Order allow,deny
  407. Allow from all
  408. </Directory>
  409.  
  410. Alias /adminer "/Applications/MAMP/bin/adminer"
  411.  
  412. <Directory "/Applications/MAMP/bin/adminer">
  413. DirectoryIndex adminer.php
  414. Options Indexes MultiViews
  415. AllowOverride None
  416. Order allow,deny
  417. Allow from all
  418. </Directory>
  419.  
  420. #
  421. # ScriptAlias: This controls which directories contain server scripts.
  422. # ScriptAliases are essentially the same as Aliases, except that
  423. # documents in the target directory are treated as applications and
  424. # run by the server when requested rather than as documents sent to the
  425. # client. The same rules about trailing "/" apply to ScriptAlias
  426. # directives as to Alias.
  427. #
  428. ScriptAlias /cgi-bin/ "/Applications/MAMP/cgi-bin/"
  429.  
  430. Alias /perl/ "/Applications/MAMP/cgi-bin/"
  431.  
  432. <IfModule perl_module>
  433. PerlModule ModPerl::Registry
  434. <Location /perl>
  435. SetHandler perl-script
  436. PerlResponseHandler ModPerl::Registry
  437. PerlOptions +ParseHeaders
  438. Options +ExecCGI
  439. </Location>
  440. </IfModule>
  441. </IfModule>
  442.  
  443. <IfModule cgid_module>
  444. #
  445. # ScriptSock: On threaded servers, designate the path to the UNIX
  446. # socket used to communicate with the CGI daemon of mod_cgid.
  447. #
  448. #Scriptsock logs/cgisock
  449. </IfModule>
  450.  
  451. #
  452. # "/Applications/MAMP/cgi-bin" should be changed to whatever your ScriptAliased
  453. # CGI directory exists, if you have that configured.
  454. #
  455. <Directory "/Applications/MAMP/cgi-bin">
  456. AllowOverride None
  457. Options None
  458. Order allow,deny
  459. Allow from all
  460. </Directory>
  461.  
  462. #
  463. # DefaultType: the default MIME type the server will use for a document
  464. # if it cannot otherwise determine one, such as from filename extensions.
  465. # If your server contains mostly text or HTML documents, "text/plain" is
  466. # a good value. If most of your content is binary, such as applications
  467. # or images, you may want to use "application/octet-stream" instead to
  468. # keep browsers from trying to display binary files as though they are
  469. # text.
  470. #
  471. DefaultType text/plain
  472.  
  473. <IfModule mime_module>
  474. #
  475. # TypesConfig points to the file containing the list of mappings from
  476. # filename extension to MIME-type.
  477. #
  478. TypesConfig /Applications/MAMP/conf/apache/mime.types
  479.  
  480. #
  481. # AddType allows you to add to or override the MIME configuration
  482. # file specified in TypesConfig for specific file types.
  483. #
  484. #AddType application/x-gzip .tgz
  485. #
  486. # AddEncoding allows you to have certain browsers uncompress
  487. # information on the fly. Note: Not all browsers support this.
  488. #
  489. #AddEncoding x-compress .Z
  490. #AddEncoding x-gzip .gz .tgz
  491. #
  492. # If the AddEncoding directives above are commented-out, then you
  493. # probably should define those extensions to indicate media types:
  494. #
  495. AddType application/x-compress .Z
  496. AddType application/x-gzip .gz .tgz
  497.  
  498. #
  499. # AddHandler allows you to map certain file extensions to "handlers":
  500. # actions unrelated to filetype. These can be either built into the server
  501. # or added with the Action directive (see below)
  502. #
  503. # To use CGI scripts outside of ScriptAliased directories:
  504. # (You will also need to add "ExecCGI" to the "Options" directive.)
  505. #
  506. AddHandler cgi-script .cgi .pl
  507.  
  508. # For type maps (negotiated resources):
  509. #AddHandler type-map var
  510.  
  511. #
  512. # Filters allow you to process content before it is sent to the client.
  513. #
  514. # To parse .shtml files for server-side includes (SSI):
  515. # (You will also need to add "Includes" to the "Options" directive.)
  516. #
  517. #AddType text/html .shtml
  518. #AddOutputFilter INCLUDES .shtml
  519. </IfModule>
  520.  
  521. #
  522. # The mod_mime_magic module allows the server to use various hints from the
  523. # contents of the file itself to determine its type. The MIMEMagicFile
  524. # directive tells the module where the hint definitions are located.
  525. #
  526. <IfModule mime_magic_module>
  527. MIMEMagicFile /Applications/MAMP/conf/apache/magic
  528. </IfModule>
  529.  
  530. #
  531. # Customizable error responses come in three flavors:
  532. # 1) plain text 2) local redirects 3) external redirects
  533. #
  534. # Some examples:
  535. #ErrorDocument 500 "The server made a boo boo."
  536. #ErrorDocument 404 /missing.html
  537. #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
  538. #ErrorDocument 402 http://www.example.com/subscription_info.html
  539. #
  540.  
  541. #
  542. # EnableMMAP and EnableSendfile: On systems that support it,
  543. # memory-mapping or the sendfile syscall is used to deliver
  544. # files. This usually improves server performance, but must
  545. # be turned off when serving from networked-mounted
  546. # filesystems or if support for these functions is otherwise
  547. # broken on your system.
  548. #
  549. #EnableMMAP off
  550. #EnableSendfile off
  551.  
  552. # Supplemental configuration
  553. #
  554. # The configuration files in the /Applications/MAMP/conf/apache/extra/ directory can be
  555. # included to add extra features or to modify the default configuration of
  556. # the server, or you may simply copy their contents here and change as
  557. # necessary.
  558.  
  559. # Server-pool management (MPM specific)
  560. #Include /Applications/MAMP/conf/apache/extra/httpd-mpm.conf
  561.  
  562. # Multi-language error messages
  563. #Include /Applications/MAMP/conf/apache/extra/httpd-multilang-errordoc.conf
  564.  
  565. # Fancy directory listings
  566. #Include /Applications/MAMP/conf/apache/extra/httpd-autoindex.conf
  567.  
  568. # Language settings
  569. #Include /Applications/MAMP/conf/apache/extra/httpd-languages.conf
  570.  
  571. # User home directories
  572. #Include /Applications/MAMP/conf/apache/extra/httpd-userdir.conf
  573.  
  574. # Real-time info on requests and configuration
  575. #Include /Applications/MAMP/conf/apache/extra/httpd-info.conf
  576.  
  577. # Virtual hosts
  578. Include /Applications/MAMP/conf/apache/extra/httpd-vhosts.conf
  579.  
  580. # Local access to the Apache HTTP Server Manual
  581. #Include /Applications/MAMP/conf/apache/extra/httpd-manual.conf
  582.  
  583. # Distributed authoring and versioning (WebDAV)
  584. #Include /Applications/MAMP/conf/apache/extra/httpd-dav.conf
  585.  
  586. # Various default settings
  587. #Include /Applications/MAMP/conf/apache/extra/httpd-default.conf
  588.  
  589. # Secure (SSL/TLS) connections
  590. #Include /Applications/MAMP/conf/apache/extra/httpd-ssl.conf
  591. #
  592. # Note: The following must must be present to support
  593. # starting without SSL on platforms with no /dev/random equivalent
  594. # but a statically compiled-in mod_ssl.
  595. #
  596. <IfModule ssl_module>
  597. SSLRandomSeed startup file:/dev/urandom 1024
  598. SSLRandomSeed connect file:/dev/urandom 1024
  599.  
  600. #
  601. # Uncomment the next line if Apache should not accept SSLv3 connections, to learn more google for "POODLE SSLv3".
  602. # SSLProtocol All -SSLv2 -SSLv3
  603. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement