Graham Dumpleton

Results 765 comments of Graham Dumpleton

Not a waste of time as I have been sitting on needing to make some mod_wsgi changes for a while. Wasn't the best day for me to decide to do...

For the first case, where have you got your Python distribution from? It doesn't seem to be a standard distribution from Homebrew or Python Software Foundation since they would not...

So long as you have `/usr/local/bin` before macOS paths for Xcode stuff, then `/usr/local/bin/apxs` should be found in your path first and use that. If `PATH` doesn't have `/usr/local/bin` first...

Make sure `/usr/local/bin` is at the start of `PATH`. In other words, is set as: ``` PATH="/usr/local/bin:$PATH" ``` and not: ``` PATH=$PATH:/usr/local/bin ``` That way `python3` from `/usr/local/bin` will be...

Closing as no further followup and so assumed was resolved.

You have added a few overlapping different things to configure the virtual environment which we need to fix first. Instead of: ``` WSGIDaemonProcess capacity_management python-home=/home/ec2-user/capacity_management/myenv python-path=/home/ec2-user/capacity_management/myenv/lib64/python3.7/site-packages ``` use: ``` WSGIDaemonProcess...

You are not in the system Apache configuration directory. You want the directory containing the config files where you have been adding your customisations for Apache. If it is `/etc/apache2`...