Truncated content with Apache on Vagrant VM
Posted
by
Nev Stokes
on Super User
See other posts from Super User
or by Nev Stokes
Published on 2013-07-15T09:19:29Z
Indexed on
2013/10/18
4:00 UTC
Read the original article
Hit count: 313
I'm using Vagrant to run a CentOS VM in order to try and achieve local development parity with our live servers. I've symlinked /var/www/html
with the /vagrant
shared directory and am forwarding port 80 for viewing at http://localhost:4567
. I'm developing using SublimeText 2 on OS X Mountain Lion.
Once I figured that iptables was tripping me up, all was well and good. Until I noticed something strange.
I have a sample HTML page consisting of several paragraphs of lorem copy. I can view this fine in a browser on OS X. But when I make an edit, for example removing a paragraph, and refresh the content is truncated with the paragraph I deleted still visible.
When I cat
the files on the server I can see the changes I made but these aren't even reflected when I curl localhost
.
I strongly suspect that it's a problem with my Apache settings — with which I didn't really tinker — as the issue doesn't arise when I stop Apache and run sudo python -m SimpleHTTPServer 80
in the directory to view pages instead.
What gives?
© Super User or respective owner