Guest User

Untitled

a guest
Jun 22nd, 2014
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1.  
  2. [Sat Jun 07 20:51:30 2014] [notice] Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u10 configured -- resuming normal operations
  3. [Sat Jun 07 20:51:32 2014] [error] [client 104.11.9.12] File does not exist: /var/www/img.xxx.in/openphoto-master/src/html/setup
  4.  
  5. [Sat Jun 07 21:04:17 2014] [notice] caught SIGTERM, shutting down
  6. [Sat Jun 07 21:04:18 2014] [notice] Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u10 configured -- resuming normal operations
  7. [Sat Jun 07 21:04:20 2014] [error] [client 104.11.9.12] File does not exist: /var/www/img.xxx.in/openphoto-4.0.2-rc4/src/html/setup
  8.  
  9. root@gash:/var/www/img.xxx.in/openphoto-4.0.2-rc4# cat /etc/apache2/sites-available/
  10. openphoto
  11. <VirtualHost img.xxx.in:80>
  12. DocumentRoot /var/www/img.xxx.in/openphoto-4.0.2-rc4/src/html
  13. ServerName img.xxx.in
  14.  
  15. RewriteEngine on
  16. RewriteCond %{HTTP_HOST} !^img.xxx.in
  17. RewriteRule ^.*$ http://img.xxx.in [R,L]
  18.  
  19. <Directory "/var/www/img.xxx.in/openshoto-4.0.2-rc4/src/html">
  20. Order deny,allow
  21. Allow from all
  22.  
  23. RewriteEngine on
  24. RewriteCond %{REQUEST_FILENAME} !-f
  25. RewriteCond %{REQUEST_FILENAME} !-d
  26. RewriteRule ^(.*)\?*$ index.php?__route__=/$1 [L,QSA]
  27.  
  28. # 403 Forbidden for ini files
  29. #RewriteRule \.ini$ - [F,NC]
  30.  
  31. AddOutputFilterByType DEFLATE text/plain
  32. AddOutputFilterByType DEFLATE text/html
  33. AddOutputFilterByType DEFLATE text/css
  34. AddOutputFilterByType DEFLATE application/x-javascript
  35. BrowserMatch ^Mozilla/4 gzip-only-text/html
  36. BrowserMatch ^Mozilla/4\.0[678] no-gzip
  37. BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
  38. </Directory>
  39.  
  40. # 404 Not Found for ini files
  41. AliasMatch \.ini$ /404
  42.  
  43. ExpiresActive On
  44. ExpiresByType text/javascript "A31536000"
  45. ExpiresByType application/x-javascript "A31536000"
  46. ExpiresByType text/css "A31536000"
  47. ExpiresByType image/x-icon "A31536000"
  48. ExpiresByType image/gif "A604800"
  49. ExpiresByType image/jpg "A604800"
  50. ExpiresByType image/jpeg "A604800"
  51. ExpiresByType image/png "A604800"
  52.  
  53. Header set Cache-Control "must-revalidate"
  54. FileETag MTime Size
  55. </VirtualHost>
  56.  
  57. root@gash:/var/www# updatedb
  58. root@gash:/var/www# locate setup | grep openphoto
  59. /var/www/img.xxx.in/openphoto/src/html/assets/themes/default/stylesheets/setup.css
  60. /var/www/img.xxx.in/openphoto/src/libraries/routes-setup.php
  61. /var/www/img.xxx.in/openphoto/src/templates/setup-dropbox.php
  62. /var/www/img.xxx.in/openphoto/src/templates/setup.php
Advertisement
Add Comment
Please, Sign In to add comment