我已经extra
安装了来自nginx-mod-headers-more
的{{1}}及其community
个more_set_headers
个/etc/nginx.conf
个存储库{/ 3}}。
我想在主配置文件load_module '/usr/lib/nginx/modules/ngx_http_headers_more_filter_module.so';
中使用其more_set_headers 'web server'
指令。
我在配置文件中添加了以下行:
http
和
/usr/lib/nginx/modules
在*.so
区块内。
nginx
是安装后软件包放置模块(403: Forbidden
文件)的地方。
重新加载nginx不会输出任何读取配置文件的错误,但模块不起作用。我仍然在load_module
页面中看到了cmake_minimum_required (VERSION 2.8)
PROJECT (MyProj)
IF (NOT ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} LESS 3.1)
cmake_policy(SET CMP0054 OLD)
ENDIF ()
set(SRCS_COMMON
#Here I locate the relative paths to a bunch of .cpp files
#../../Source/Common/Math/Example.cpp
)
ADD_LIBRARY(MyProj_static STATIC ${SRCS_COMMON})
TARGET_INCLUDE_DIRECTORIES(MyProj_static PRIVATE ../../Include)
SET_TARGET_PROPERTIES(MyProj_static PROPERTIES OUTPUT_NAME MyProj_static)
标识。
在线进行一些研究我已经了解archlinux中的静态和动态模块处理。