If it worked, there will be a symlink installed into /etc/apache2/conf-enabled which points to that conf file
weewx.conf -> /etc/apache2/conf-available/weewx.conf Looking in the tarball ( weewx-3.6.2.tar.gz ), there's an apache weewx.conf file under /weewx-3.6.2/util/apache/conf.d/ Alias /weewx /home/weewx/public_html <Directory /home/weewx/public_html> Options FollowSymlinks AllowOverride None # for apache 2.2 Order allow,deny Allow from all # for apache 2.4 # Require all granted </Directory> Judging by your original comment, you're probably using that one? If you're on a recent pi then you'd be running apache 2.4 (run apachectl -V to check ) so adjust the comments in that file accordingly. After that, I'm out of ideas - except check your logs :-) tail -f /var/log/apache2/*.log (or multitail as an alternative where you can use enter to add a mark) Cheers Glenn rorpi - read only raspberry pi + weewx: now with scripts <https://github.com/glennmckechnie/rorpi-raspberrypi> On 18 January 2017 at 13:46, Jerry Simonowits <[email protected]> wrote: > Thanks Glenn, that was a typo ... I did find it , seemed to work but the > Apache server is still not serving the page. > > Jerry > > > - "Defeat lasts one day, giving up lasts a lifetime." > > On Jan 17, 2017, at 8:19 PM, Glenn McKechnie <[email protected]> > wrote: > > a2enconf - not - a2ecinf > > It comes packaged with apache2 and lives at /usr/sbin/a2enconf > > > Cheers > Glenn > > rorpi - read only raspberry pi + weewx: now with scripts > <https://github.com/glennmckechnie/rorpi-raspberrypi> > > On 18 January 2017 at 12:00, Jerry Simonowits <[email protected]> > wrote: > >> The system could not find the a2ecinf command. >> >> Jerry >> >> >> - "Defeat lasts one day, giving up lasts a lifetime." >> >> > On Jan 15, 2017, at 5:22 PM, Glenn McKechnie <[email protected]> >> wrote: >> > >> > then run the command... >> > a2enconf weewx.conf >> >> -- >> 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]. >> For more options, visit https://groups.google.com/d/optout. >> > > -- > You received this message because you are subscribed to a topic in the > Google Groups "weewx-user" group. > To unsubscribe from this topic, visit https://groups.google.com/d/ > topic/weewx-user/XQjAgjwRff8/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > [email protected]. > For more options, visit https://groups.google.com/d/optout. > > -- > 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]. > For more options, visit https://groups.google.com/d/optout. > -- 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]. For more options, visit https://groups.google.com/d/optout.
