-
Update your node
You need to build the binary file from source or download it from the GH:-
To build it from source:
go to the nym directory on your server and run the next commandsgit fetch git checkout v0.11.0
-
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
[ | |
{ | |
"name": "Afghanistan", | |
"dial_code": "+93", | |
"code": "AF" | |
}, | |
{ | |
"name": "Aland Islands", | |
"dial_code": "+358", | |
"code": "AX" |
This gist shows how to connect to your vagrant MySQL database from the host machine.
- Connect to vagrant using
vagrant ssh
- Edit file
/etc/mysql/my.cnf
:- Change parameter
bind-address
to0.0.0.0
to allow all incoming connection attempts
- Change parameter
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
/*------------------------------------------ | |
Responsive Grid Media Queries - 1280, 1024, 768, 480 | |
1280-1024 - desktop (default grid) | |
1024-768 - tablet landscape | |
768-480 - tablet | |
480-less - phone landscape & smaller | |
--------------------------------------------*/ | |
@media all and (min-width: 1024px) and (max-width: 1280px) { } | |
@media all and (min-width: 768px) and (max-width: 1024px) { } |
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
AddHandler wsgi-script .wsgi | |
RewriteEngine on | |
RewriteBase / | |
RewriteRule ^(media/.*)$ - [L] | |
RewriteRule ^(static/.*)$ - [L] | |
RewriteCond %{REQUEST_URI} !(django.wsgi) | |
RewriteRule ^(.*)$ django.wsgi/$1 [L] |
NewerOlder