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
| #### Security Headers | |
| # [WARNING] Strict-Transport-Security will stop HTTP access for specified time. | |
| add_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload"; | |
| # [WARNING] X-Frame-Options DENY will break iframed sites. | |
| add_header X-Frame-Options DENY; | |
| add_header X-Content-Type-Options nosniff; | |
| #### SSL Stapling |
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
| # ************************************************************ | |
| # Sequel Pro SQL dump | |
| # Version 4541 | |
| # | |
| # http://www.sequelpro.com/ | |
| # https://github.com/sequelpro/sequelpro | |
| # | |
| # Host: 192.168.99.100 (MySQL 5.6.30) | |
| # Database: posydocker | |
| # Generation Time: 2016-06-22 13:47:51 +0000 |
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
| upstream clientapp { | |
| server 127.0.0.1:3030; | |
| keepalive 64; | |
| } | |
| upstream adminapp { | |
| server 127.0.0.1:3031; | |
| keepalive 64; | |
| } |
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
| server { | |
| listen 80; | |
| server_name ~^(www\.)?(?<sname>.+?).multiplej.com$; | |
| root /home/deployer/$sname/public; | |
| index index.html index.htm index.php; | |
| charset utf-8; | |
| location / { |
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
| https://github.com/facebook/react-native/issues/3049#issuecomment-143505930 |
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
| https://certsimple.com/blog/deploy-node-on-linux |
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
| https://github.com/facebook/relay/pull/608 |
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
| export default function rerender(options) { | |
| const [React] = options.imports; | |
| if (!React || !React.Component) { | |
| throw new Error('imports[0] for react-transform-rerender does not look like React.'); | |
| } | |
| return function wrap(ReactClass, componentId) { | |
| const displayName = options.components[componentId].displayName || '<Unknown>'; |
NewerOlder