You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The example above is good enough for a basic Apache deployment but your `.fcgi` file will appear in your application URL e.g. www.example.com/yourapplication.fcgi/news/. There are few ways to resolve it. A preferable way is to use Apache ScriptAlias configuration directive::
58
+
59
+
<VirtualHost *>
60
+
ServerName example.com
61
+
ScriptAlias / /path/to/yourapplication.fcgi/
62
+
</VirtualHost>
63
+
64
+
Another way is to use a custom WSGI middleware. For example on a shared web hosting::
0 commit comments