- DocBlockr: Simplifies writing DocBlock comments in Javascript, PHP, CoffeeScript, Actionscript, C & C++
- Spacegray: Theme
- SublimeLinter: Interactive code linting framework for Sublime Text 3
- BracketHighlighter: Bracket and tag highlighter for Sublime Text
- Python Flake8 Lint: heck Python files with flake8 (PEP8, pyflake and mccabe)
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
# All Vagrant configuration is done here. The most common configuration | |
# options are documented and commented below. For a complete reference, | |
# please see the online documentation at vagrantup.com. |
[root@vagrant-centos65 ~]# /tmp/bootstrap_salt.sh -v | |
/tmp/bootstrap_salt.sh -- Version 1.5.5 | |
[root@vagrant-centos65 ~]# /tmp/bootstrap_salt.sh -D -F -c /tmp -k /tmp/minion-seed-keys -C | |
* ERROR: Option does not exist : F | |
Usage : bootstrap-salt.sh [options] <install-type> <install-type-args> | |
Installation types: | |
- stable (default) |
This process will upgrade VBoxGuestAdditions from CLI in Vagrant (or just straight VirtualBox).
This is easier if we are root so ...
sudo su -
Next we make sure the packages that are usually removed to slim the box are re-added so that we can recompile VBoxGuestAdditions. After that we download and compile VBoxGuestAdditions followed by a little clean up.
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = "madjango-base" | |
config.vm.box_url = "http://**************/madjango-base.box" | |
config.vm.post_up_message = "This is a Test" |
<a href='javascript: (function(){var e="https://your.website.com/prismjs/";var t=document.createElement("script");var n=document.createElement("link");t.setAttribute("src",e+"prism.js");n.setAttribute("href",e+"prism.css");n.setAttribute("rel","stylesheet");document.body.appendChild(n);document.body.appendChild(t);t.onload=function(){Prism.highlightAll()}})()'>Bookmarklet</a> |
Did you allow httpd to connect to the network?
setsebool -P httpd_can_network_connect 1
service httpd restart
[Tue Jun 03 22:05:51 2014] [error] (111)Connection refused: proxy: HTTP: attempt to connect to 127.0.0.1:8001 (127.0.0.1) failed
[Tue Jun 03 22:05:51 2014] [error] ap_proxy_connect_backend disabling worker for (127.0.0.1)
[Tue Jun 03 22:05:52 2014] [error] proxy: HTTP: disabled connection for (127.0.0.1)
[...]
The problem is that the Apache proxy module, recognising that the service was unavailable, stopped redirecting requests to it for one minute.
Everything worked fine until you added an Alias to your vhost. The Gunicorn requests are working but none of the ProxyPass requests are being processed.
Did you move the webroot from /var/www
or similar to something like /srv/apps
?
chcon -Rv --type=httpd_sys_content_t /srv/apps