Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. application: appname
  2. version: phpmyadmin
  3. runtime: php
  4. api_version: 1
  5.  
  6. handlers:
  7. - url: /phpMyAdmin/(.*.(ico$|jpg$|png$|gif$))
  8. static_files: phpMyAdmin/1
  9. upload: phpMyAdmin/(.*.(ico$|jpg$|png$|gif$))
  10. application_readable: true
  11.  
  12. - url: /phpMyAdmin/(.*.(htm$|html$|css$|js$))
  13. static_files: phpMyAdmin/1
  14. upload: phpMyAdmin/(.*.(htm$|html$|css$|js$))
  15. application_readable: true
  16.  
  17. - url: /(.*.(ico$|jpg$|png$|gif$))
  18. static_files: phpMyAdmin/1
  19. upload: phpMyAdmin/(.*.(ico$|jpg$|png$|gif$))
  20. application_readable: true
  21.  
  22. - url: /(.*.(htm$|html$|css$|js$))
  23. static_files: phpMyAdmin/1
  24. upload: phpMyAdmin/(.*.(htm$|html$|css$|js$))
  25. application_readable: true
  26.  
  27. - url: /phpMyAdmin/(.*.(php$))
  28. script: phpMyAdmin/1
  29. login: admin
  30.  
  31. - url: /(.*.(php$))
  32. script: phpMyAdmin/1
  33. login: admin
  34.  
  35. - url: /(.+)
  36. script: phpMyAdmin/index.php
  37. login: admin
  38.  
  39. - url: /.*
  40. script: phpMyAdmin/index.php
  41. login: admin
  42.  
  43. /*
  44. * Servers configuration
  45. */
  46. $i = 0;
  47. $host = '/cloudsql/gae-project-name:appname';
  48. $type = 'socket';
  49.  
  50. /*
  51. * First server
  52. */
  53. $i++;
  54. /* Authentication type */
  55. $cfg['Servers'][$i]['auth_type'] = 'cookie';
  56. /* Server parameters */
  57. //$cfg['Servers'][$i]['username'] = 'root';
  58. //$cfg['Servers'][$i]['password'] = 'thepassword';
  59. $cfg['Servers'][$i]['socket'] = $host;
  60. //$cfg['Servers'][$i]['host'] = 'localhost';
  61. $cfg['Servers'][$i]['connect_type'] = $type;
  62. $cfg['Servers'][$i]['compress'] = false;
  63. /* Select mysql if your server does not have mysqli */
  64. $cfg['Servers'][$i]['extension'] = 'mysqli';
  65. $cfg['Servers'][$i]['AllowNoPassword'] = false;
  66.  
  67.  
  68. //The bottom of the file
  69. $cfg['McryptDisableWarning'] = true;
  70. $cfg['PmaNoRelation_DisableWarning'] = true;
  71. $cfg['ExecTimeLimit'] = 60;
  72. $cfg['CheckConfigurationPermissions'] = false;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement