On Saturday, November 21, 2020 at 8:58:06 AM UTC-8 [email protected] wrote: > This is a new install using the python tool setup.py method... After > installing weewx and apache2 and browsing to it, I am seeing the > /var/www/html/index.html page instead of the > /home/weewx/public_html/index.html page.
If you followed the instructions exactly, your weewx web is one level down from the top of your apache HTML_ROOT. Try opening http://your.hostname.here/weewx and see if you see weewx pages.... Quick explanation is the content of the ...conf.d/weewx.conf file Alias /weewx /home/weewx/public_html <Directory /home/weewx/public_html> Options FollowSymlinks AllowOverride None </Directory> What the Alias line says is "*when somebody asks for http://your.hostname.here/weewx from a web browser, give them the content of /home/weewx/public_html located in the apache computer's filesystem'*... -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/337aa23b-d1ae-41cc-ba77-05357ce5a08fn%40googlegroups.com.
