docker-dotclear/www/servers/subfolder.conf

20 lines
660 B
Text
Raw Normal View History

2024-11-12 22:45:50 +00:00
# docker-dotclear:*
2024-11-23 17:26:20 +00:00
# /var/www/dotclear/servers/subfolder.conf
# Nginx server by subfolders
2024-11-11 16:56:16 +00:00
server {
# By default, server URLs look like:
# - http://localhost/default
# - http://localhost/blog2
# - ...
2024-11-23 17:26:20 +00:00
server_name localhost;
2024-11-11 16:56:16 +00:00
2024-11-23 17:26:20 +00:00
# To use custom configuration only use
2024-11-11 16:56:16 +00:00
# include /etc/nginx/snippets/snippets_common.conf;
# Adapt to your needs here the content of
2024-11-23 17:26:20 +00:00
# /etc/nginx/snippets/snippets_subfolder.conf
2024-11-11 16:56:16 +00:00
# Then disable the Dotclear plugin DockerDotclear
2024-11-23 17:26:20 +00:00
# (or change their settings)
include /etc/nginx/snippets/snippets_subfolder.conf;
include /etc/nginx/snippets/snippets_common.conf;
2024-11-11 16:56:16 +00:00
}