Create droplet of your liking (ubuntu 12.10 x32)
ssh to root in terminal with your server ip
ssh [email protected]
Add ssh fingerprint and enter password provided in email
| localhost:80 | |
| gzip | |
| ext .html | |
| root /home/deploy/current/build/www | |
| proxy /graphql localhost:3000 | |
| rewrite /login { | |
| to {path} /login | |
| } |
| // Usage: | |
| // Copy and paste all of this into a debug console window of the "Who is Hiring?" comment thread | |
| // then use as follows: | |
| // | |
| // query(term | [term, term, ...], term | [term, term, ...], ...) | |
| // | |
| // When arguments are in an array then that means an "or" and when they are seperate that means "and" | |
| // | |
| // Term is of the format: | |
| // ((-)text/RegExp) ( '-' means negation ) |
Create droplet of your liking (ubuntu 12.10 x32)
ssh to root in terminal with your server ip
ssh [email protected]
Add ssh fingerprint and enter password provided in email
| .modal { | |
| position: absolute; | |
| top:0; | |
| left:0; | |
| z-index: 2000; | |
| height:300px; | |
| width:400px; | |
| background-color: white; | |
| border-radius:10px; | |
| border: 1px solid rgba(0, 0, 0, 0.3); |
| class ApplicationController < ActionController::Base | |
| ... | |
| # FORCE to implement content_for in controller | |
| def view_context | |
| super.tap do |view| | |
| (@_content_for || {}).each do |name,content| | |
| view.content_for name, content | |
| end | |
| end | |
| end |