Advertisement
Guest User

Untitled

a guest
Sep 8th, 2016
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.21 KB | None | 0 0
  1. Magento Admin Info:
  2.  
  3. Username:
  4. admin
  5. Email:
  6. admin@test.com
  7. Password:
  8. ******
  9. Your Store Address:
  10. http://localhost/magento/
  11. Magento Admin Address:
  12. http://localhost/magento/admin/
  13.  
  14. Not Found
  15.  
  16. The requested URL /magento/ was not found on this server.
  17.  
  18. Apache/2.4.18 (Ubuntu) Server at localhost Port 80
  19.  
  20. /etc/php/7.0/apache2/conf.d
  21.  
  22. ā€œ/etc/php/7.0/apache2/conf.dā€ is a directory.
  23.  
  24. gedit /etc/apache2/apache2.conf
  25.  
  26. # This is the main Apache server configuration file. It contains the
  27. # configuration directives that give the server its instructions.
  28. # See http://httpd.apache.org/docs/2.4/ for detailed information about
  29. # the directives and /usr/share/doc/apache2/README.Debian about Debian specific
  30. # hints.
  31. #
  32. #
  33. # Summary of how the Apache 2 configuration works in Debian:
  34. # The Apache 2 web server configuration in Debian is quite different to
  35. # upstream's suggested way to configure the web server. This is because Debian's
  36. # default Apache2 installation attempts to make adding and removing modules,
  37. # virtual hosts, and extra configuration directives as flexible as possible, in
  38. # order to make automating the changes and administering the server as easy as
  39. # possible.
  40.  
  41. # It is split into several files forming the configuration hierarchy outlined
  42. # below, all located in the /etc/apache2/ directory:
  43. #
  44. # /etc/apache2/
  45. # |-- apache2.conf
  46. # | `-- ports.conf
  47. # |-- mods-enabled
  48. # | |-- *.load
  49. # | `-- *.conf
  50. # |-- conf-enabled
  51. # | `-- *.conf
  52. # `-- sites-enabled
  53. # `-- *.conf
  54. #
  55. #
  56. # * apache2.conf is the main configuration file (this file). It puts the pieces
  57. # together by including all remaining configuration files when starting up the
  58. # web server.
  59. #
  60. # * ports.conf is always included from the main configuration file. It is
  61. # supposed to determine listening ports for incoming connections which can be
  62. # customized anytime.
  63. #
  64. # * Configuration files in the mods-enabled/, conf-enabled/ and sites-enabled/
  65. # directories contain particular configuration snippets which manage modules,
  66. # global configuration fragments, or virtual host configurations,
  67. # respectively.
  68. #
  69. # They are activated by symlinking available configuration files from their
  70. # respective *-available/ counterparts. These should be managed by using our
  71. # helpers a2enmod/a2dismod, a2ensite/a2dissite and a2enconf/a2disconf. See
  72. # their respective man pages for detailed information.
  73. #
  74. # * The binary is called apache2. Due to the use of environment variables, in
  75. # the default configuration, apache2 needs to be started/stopped with
  76. # /etc/init.d/apache2 or apache2ctl. Calling /usr/bin/apache2 directly will not
  77. # work with the default configuration.
  78.  
  79.  
  80. # Global configuration
  81. #
  82.  
  83. #
  84. # ServerRoot: The top of the directory tree under which the server's
  85. # configuration, error, and log files are kept.
  86. #
  87. # NOTE! If you intend to place this on an NFS (or otherwise network)
  88. # mounted filesystem then please read the Mutex documentation (available
  89. # at <URL:http://httpd.apache.org/docs/2.4/mod/core.html#mutex>);
  90. # you will save yourself a lot of trouble.
  91. #
  92. # Do NOT add a slash at the end of the directory path.
  93. #
  94. #ServerRoot "/etc/apache2"
  95.  
  96. #
  97. # The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
  98. #
  99. Mutex file:${APACHE_LOCK_DIR} default
  100.  
  101. #
  102. # PidFile: The file in which the server should record its process
  103. # identification number when it starts.
  104. # This needs to be set in /etc/apache2/envvars
  105. #
  106. PidFile ${APACHE_PID_FILE}
  107.  
  108. #
  109. # Timeout: The number of seconds before receives and sends time out.
  110. #
  111. Timeout 300
  112.  
  113. #
  114. # KeepAlive: Whether or not to allow persistent connections (more than
  115. # one request per connection). Set to "Off" to deactivate.
  116. #
  117. KeepAlive On
  118.  
  119. #
  120. # MaxKeepAliveRequests: The maximum number of requests to allow
  121. # during a persistent connection. Set to 0 to allow an unlimited amount.
  122. # We recommend you leave this number high, for maximum performance.
  123. #
  124. MaxKeepAliveRequests 100
  125.  
  126. #
  127. # KeepAliveTimeout: Number of seconds to wait for the next request from the
  128. # same client on the same connection.
  129. #
  130. KeepAliveTimeout 5
  131.  
  132.  
  133. # These need to be set in /etc/apache2/envvars
  134. User ${APACHE_RUN_USER}
  135. Group ${APACHE_RUN_GROUP}
  136.  
  137. #
  138. # HostnameLookups: Log the names of clients or just their IP addresses
  139. # e.g., www.apache.org (on) or 204.62.129.132 (off).
  140. # The default is off because it'd be overall better for the net if people
  141. # had to knowingly turn this feature on, since enabling it means that
  142. # each client request will result in AT LEAST one lookup request to the
  143. # nameserver.
  144. #
  145. HostnameLookups Off
  146.  
  147. # ErrorLog: The location of the error log file.
  148. # If you do not specify an ErrorLog directive within a <VirtualHost>
  149. # container, error messages relating to that virtual host will be
  150. # logged here. If you *do* define an error logfile for a <VirtualHost>
  151. # container, that host's errors will be logged there and not here.
  152. #
  153. ErrorLog ${APACHE_LOG_DIR}/error.log
  154.  
  155. #
  156. # LogLevel: Control the severity of messages logged to the error_log.
  157. # Available values: trace8, ..., trace1, debug, info, notice, warn,
  158. # error, crit, alert, emerg.
  159. # It is also possible to configure the log level for particular modules, e.g.
  160. # "LogLevel info ssl:warn"
  161. #
  162. LogLevel warn
  163.  
  164. # Include module configuration:
  165. IncludeOptional mods-enabled/*.load
  166. IncludeOptional mods-enabled/*.conf
  167.  
  168. # Include list of ports to listen on
  169. Include ports.conf
  170.  
  171.  
  172. # Sets the default security model of the Apache2 HTTPD server. It does
  173. # not allow access to the root filesystem outside of /usr/share and /var/www.
  174. # The former is used by web applications packaged in Debian,
  175. # the latter may be used for local directories served by the web server. If
  176. # your system is serving content from a sub-directory in /srv you must allow
  177. # access here, or in any related virtual host.
  178. <Directory />
  179. Options FollowSymLinks
  180. AllowOverride None
  181. Require all denied
  182. </Directory>
  183.  
  184. <Directory /usr/share>
  185. AllowOverride None
  186. Require all granted
  187. </Directory>
  188.  
  189. <Directory /var/www/>
  190. Options Indexes FollowSymLinks
  191. AllowOverride All
  192. Require all granted
  193. </Directory>
  194.  
  195. #<Directory /srv/>
  196. # Options Indexes FollowSymLinks
  197. # AllowOverride None
  198. # Require all granted
  199. #</Directory>
  200.  
  201.  
  202.  
  203.  
  204. # AccessFileName: The name of the file to look for in each directory
  205. # for additional configuration directives. See also the AllowOverride
  206. # directive.
  207. #
  208. AccessFileName .htaccess
  209.  
  210. #
  211. # The following lines prevent .htaccess and .htpasswd files from being
  212. # viewed by Web clients.
  213. #
  214. <FilesMatch "^.ht">
  215. Require all denied
  216. </FilesMatch>
  217.  
  218.  
  219. #
  220. # The following directives define some format nicknames for use with
  221. # a CustomLog directive.
  222. #
  223. # These deviate from the Common Log Format definitions in that they use %O
  224. # (the actual bytes sent including headers) instead of %b (the size of the
  225. # requested file), because the latter makes it impossible to detect partial
  226. # requests.
  227. #
  228. # Note that the use of %{X-Forwarded-For}i instead of %h is not recommended.
  229. # Use mod_remoteip instead.
  230. #
  231. LogFormat "%v:%p %h %l %u %t "%r" %>s %O "%{Referer}i" "%{User-Agent}i"" vhost_combined
  232. LogFormat "%h %l %u %t "%r" %>s %O "%{Referer}i" "%{User-Agent}i"" combined
  233. LogFormat "%h %l %u %t "%r" %>s %O" common
  234. LogFormat "%{Referer}i -> %U" referer
  235. LogFormat "%{User-agent}i" agent
  236.  
  237. # Include of directories ignores editors' and dpkg's backup files,
  238. # see README.Debian for details.
  239.  
  240. # Include generic snippets of statements
  241. IncludeOptional conf-enabled/*.conf
  242.  
  243. # Include the virtual host configurations:
  244. IncludeOptional sites-enabled/*.conf
  245.  
  246. # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
  247.  
  248. [Thu Sep 08 10:08:07.838247 2016] [mpm_prefork:notice] [pid 27202] AH00163: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
  249. [Thu Sep 08 10:08:07.838287 2016] [core:notice] [pid 27202] AH00094: Command line: '/usr/sbin/apache2'
  250. [Thu Sep 08 10:08:10.217465 2016] [mpm_prefork:notice] [pid 27202] AH00171: Graceful restart requested, doing restart
  251. AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
  252. [Thu Sep 08 10:08:10.264056 2016] [mpm_prefork:notice] [pid 27202] AH00163: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
  253. [Thu Sep 08 10:08:10.264067 2016] [core:notice] [pid 27202] AH00094: Command line: '/usr/sbin/apache2'
  254.  
  255. /var/log/apache2/error.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement