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
| Backbone = (function (module) { | |
| module.CollectionView = Backbone.View.extend({ | |
| initialize: function (args) { | |
| var self, viewClass; | |
| var self = this; | |
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
| 1) Open the http.conf file for editing: | |
| # sudo pico /etc/apache2/http.conf. | |
| 2) Add specifics for each var/www directory to be placed under Basic Authentication: | |
| <Directory "/var/www/my-web-app-directory"> | |
| AuthUserFile /etc/apache2/htpasswords | |
| AuthName "Some silly message." | |
| AuthType Basic |
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
| ################## | |
| # Apache Install # | |
| ################## | |
| sudo apt-get update | |
| sudo apt-get upgrade | |
| sudo apt-get install apache2 |
NewerOlder