This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Begin HTTP Server | |
server { | |
listen 80; # IPv4 | |
server_name localhost; | |
## Parametrization using hostname of access and log filenames. | |
access_log logs/localhost_access.log; | |
error_log logs/localhost_error.log; | |
## Root and index files. |
OlderNewer