Guest User

Untitled

a guest
Jun 25th, 2018
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. name SGN
  2.  
  3. default_view Mason
  4.  
  5. # Disable deprecated behavior needed by old Catalyst applications
  6. disable_component_resolution_regex_fallback 1
  7.  
  8. # Static::Simple configuration
  9. root static
  10. <static>
  11. include_path __path_to(static)__
  12. dirs s
  13. dirs static
  14. dirs img
  15. dirs documents
  16. dirs static_content
  17. dirs data
  18. </static>
  19.  
  20. ### backcompat variables for the various static content types
  21.  
  22. # relative URL and absolute path for static datasets
  23. static_datasets_url /data
  24. static_datasets_path /data/prod/public
  25.  
  26. # relative URL and absoluate path for static site content
  27. static_content_url /static_content
  28. static_content_path /data/prod/public/sgn_static_content
  29. homepage_files_dir /data/prod/public/sgn_static_content/homepage
  30.  
  31. <Controller::CGI>
  32. cgi_root_path /
  33. <CGI>
  34. pass_env PERL5LIB
  35. pass_env PATH
  36. pass_env PROJECT_NAME
  37. </CGI>
  38. cgi_dir __path_to(cgi-bin)__
  39. cgi_file_pattern *.pl
  40. </Controller::CGI>
  41.  
  42. <View::BareMason>
  43. <interp_args>
  44. autohandler_name
  45. comp_root __path_to(mason)__
  46. </interp_args>
  47. globals $c
  48. template_extension .mas
  49. </View::BareMason>
  50.  
  51. <View::Mason>
  52. <interp_args>
  53. comp_root __path_to(mason)__
  54. </interp_args>
  55. globals $c
  56. template_extension .mas
  57. </View::Mason>
  58.  
  59.  
  60. <View::Email::ErrorEmail>
  61. <default>
  62. content_type text/plain
  63. to sgn-bugs@solgenomics.net
  64. from sgn-bugs@solgenomics.net
  65. charset utf-8
  66. </default>
  67. dump_skip_class Catalyst Catalyst::Stats DBIx::Class::Schema
  68. </View::Email::ErrorEmail>
Add Comment
Please, Sign In to add comment