Open port 443 on container, with a docker-compose file just add :
ports:
- 443:443
Add virtualhost config :
Listen 443 https
Open port 443 on container, with a docker-compose file just add :
ports:
- 443:443
Add virtualhost config :
Listen 443 https
| // Adds an event handler | |
| $('#my_datepickerized_field').datepicker( 'option' , 'onSelect', function (date) { // 'onSelect' here, but could be any datepicker event | |
| $(this).change(); // Lauch the "change" evenet of the <input> everytime someone click a new date | |
| }); |
| SELECT | |
| s.index_name AS name, | |
| s.column_name, | |
| s.non_unique AS `unique`, | |
| c.constraint_type | |
| FROM information_schema.statistics s | |
| LEFT JOIN information_schema.table_constraints c | |
| ON ( | |
| s.index_name = c.constraint_name | |
| ) |
| var randomSign = function() { | |
| return (Math.random() > 0.5) ? 1 : -1; | |
| }; |
| <?php | |
| class Action implements NeedThePolice | |
| { | |
| public function askHelp() | |
| { | |
| return $this->goFuckYourself(); | |
| } | |
| private function goFuckYourself() |