Reputation: 102
I am using apache first time to manage sites. The issue is when I add ProxyPass / http://127.0.0.1:888/
It works but when I change it to ProxyPass /swarmpit http://127.0.0.1:888/
, it doesn't work and I get 404 page not found. Below is the explanation in screenshots.
My /etc/apache2/sites-available/000-default.conf
looks like
When I access swarmpit, it says 404 not found.
But when I change /etc/apache2/sites-available/000-default.conf
to
It works fine
Is there anything I am missing to access /swampit
Upvotes: 0
Views: 3104
Reputation: 1655
You misspelled the URL in your curl command. In your curl command you are using swampit
and in your conf file, you are using swarmpit
.
Upvotes: 1