This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM killbill/killbill:0.20.0 | |
| ADD kpm.yml /var/lib/killbill/kpm.yml | |
| # Patch to respect X-Fowarded-Proto and others when running with ELB | |
| ADD server.xml.patch ./ | |
| RUN patch -p1 < server.xml.patch | |
| # Script that setup traps to respect docker stop commands and stop catalina | |
| ADD fargate-killbill.sh ./ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $plugin_info = array( | |
| 'pi_name' => 'debug_override', | |
| 'pi_version' =>'1.0', | |
| 'pi_author' =>'GDmac', | |
| 'pi_author_url' => '', | |
| 'pi_description' => '', | |
| 'pi_usage' => '{exp:debug_override override="all|ajax"} default is override on ajax calls', | |
| ); |