In lighttpd.conf usually comment 1 line with #
How was wondering how to comment multiple lines without adding # in front of each line.
thanks
since the lighttpd documentation doesnt show something like this in the syntax documentation, i dont think this is possible.
however, your editor may have a function to put a # in front of every line you select :)
This is PHP, correct? If so you would just use:
/* This is the start of my comment
This is more of my comment. This is
the end of my comment. */
Good luck.