nginx源码编译后配置文件不起作用

问题描述:

根据cmakelists来编译nginx,方便在clion中打开

cmake_minimum_required(VERSION 3.6)
include_directories(
    .
    src/core 
	src/event 
	src/event/modules 
	src/os/unix 
	objs 
	src/http 
	src/http/modules)
set(SOURCE_FILES
    objs/ngx_modules.c
    src/core/nginx.c 
	src/core/ngx_log.c 
	src/core/ngx_palloc.c 
	src/core/ngx_array.c 
	src/core/ngx_list.c 
	src/core/ngx_hash.c 
	src/core/ngx_buf.c 
	src/core/ngx_queue.c 
	src/core/ngx_output_chain.c 
	src/core/ngx_string.c 
	src/core/ngx_parse.c 
	src/core/ngx_parse_time.c 
	src/core/ngx_inet.c 
	src/core/ngx_file.c 
	src/core/ngx_crc32.c 
	src/core/ngx_murmurhash.c 
	src/core/ngx_md5.c 
	src/core/ngx_sha1.c 
	src/core/ngx_rbtree.c 
	src/core/ngx_radix_tree.c 
	src/core/ngx_slab.c 
	src/core/ngx_times.c 
	src/core/ngx_shmtx.c 
	src/core/ngx_connection.c 
	src/core/ngx_cycle.c 
	src/core/ngx_spinlock.c 
	src/core/ngx_rwlock.c 
	src/core/ngx_cpuinfo.c 
	src/core/ngx_conf_file.c 
	src/core/ngx_module.c 
	src/core/ngx_resolver.c 
	src/core/ngx_open_file_cache.c 
	src/core/ngx_crypt.c 
	src/core/ngx_proxy_protocol.c 
	src/core/ngx_syslog.c 
	src/event/ngx_event.c 
	src/event/ngx_event_timer.c 
	src/event/ngx_event_posted.c 
	src/event/ngx_event_accept.c 
	src/event/ngx_event_udp.c 
	src/event/ngx_event_connect.c 
	src/event/ngx_event_pipe.c 
	src/os/unix/ngx_time.c 
	src/os/unix/ngx_errno.c 
	src/os/unix/ngx_alloc.c 
	src/os/unix/ngx_files.c 
	src/os/unix/ngx_socket.c 
	src/os/unix/ngx_recv.c 
	src/os/unix/ngx_readv_chain.c 
	src/os/unix/ngx_udp_recv.c 
	src/os/unix/ngx_send.c 
	src/os/unix/ngx_writev_chain.c 
	src/os/unix/ngx_udp_send.c 
	src/os/unix/ngx_udp_sendmsg_chain.c 
	src/os/unix/ngx_channel.c 
	src/os/unix/ngx_shmem.c 
	src/os/unix/ngx_process.c 
	src/os/unix/ngx_daemon.c 
	src/os/unix/ngx_setaffinity.c 
	src/os/unix/ngx_setproctitle.c 
	src/os/unix/ngx_posix_init.c 
	src/os/unix/ngx_user.c 
	src/os/unix/ngx_dlopen.c 
	src/os/unix/ngx_process_cycle.c 
	src/os/unix/ngx_linux_init.c 
	src/event/modules/ngx_epoll_module.c 
	src/os/unix/ngx_linux_sendfile_chain.c 
	src/core/ngx_regex.c 
	src/http/ngx_http.c 
	src/http/ngx_http_core_module.c 
	src/http/ngx_http_special_response.c 
	src/http/ngx_http_request.c 
	src/http/ngx_http_parse.c 
	src/http/modules/ngx_http_log_module.c 
	src/http/ngx_http_request_body.c 
	src/http/ngx_http_variables.c 
	src/http/ngx_http_script.c 
	src/http/ngx_http_upstream.c 
	src/http/ngx_http_upstream_round_robin.c 
	src/http/ngx_http_file_cache.c 
	src/http/ngx_http_write_filter_module.c 
	src/http/ngx_http_header_filter_module.c 
	src/http/modules/ngx_http_chunked_filter_module.c 
	src/http/modules/ngx_http_range_filter_module.c 
	src/http/modules/ngx_http_gzip_filter_module.c 
	src/http/ngx_http_postpone_filter_module.c 
	src/http/modules/ngx_http_ssi_filter_module.c 
	src/http/modules/ngx_http_charset_filter_module.c 
	src/http/modules/ngx_http_userid_filter_module.c 
	src/http/modules/ngx_http_headers_filter_module.c 
	src/http/ngx_http_copy_filter_module.c 
	src/http/modules/ngx_http_not_modified_filter_module.c 
	src/http/modules/ngx_http_static_module.c 
	src/http/modules/ngx_http_autoindex_module.c 
	src/http/modules/ngx_http_index_module.c 
	src/http/modules/ngx_http_mirror_module.c 
	src/http/modules/ngx_http_try_files_module.c 
	src/http/modules/ngx_http_auth_basic_module.c 
	src/http/modules/ngx_http_access_module.c 
	src/http/modules/ngx_http_limit_conn_module.c 
	src/http/modules/ngx_http_limit_req_module.c 
	src/http/modules/ngx_http_geo_module.c 
	src/http/modules/ngx_http_map_module.c 
	src/http/modules/ngx_http_split_clients_module.c 
	src/http/modules/ngx_http_referer_module.c 
	src/http/modules/ngx_http_rewrite_module.c 
	src/http/modules/ngx_http_proxy_module.c 
	src/http/modules/ngx_http_fastcgi_module.c 
	src/http/modules/ngx_http_uwsgi_module.c 
	src/http/modules/ngx_http_scgi_module.c 
	src/http/modules/ngx_http_memcached_module.c 
	src/http/modules/ngx_http_empty_gif_module.c 
	src/http/modules/ngx_http_browser_module.c 
	src/http/modules/ngx_http_upstream_hash_module.c 
	src/http/modules/ngx_http_upstream_ip_hash_module.c 
	src/http/modules/ngx_http_upstream_least_conn_module.c 
	src/http/modules/ngx_http_upstream_random_module.c 
	src/http/modules/ngx_http_upstream_keepalive_module.c 
	src/http/modules/ngx_http_upstream_zone_module.c)
add_executable(nginx ${
    
    SOURCE_FILES})
target_link_libraries(nginx dl pthread crypt pcre z)

但是运行可执行文件的时候默认读取的是/usr/local下的配置文件,就算用-c指定也不起作用

解决方法:

在cmake 之前先运行源码自带的configure来制定nginx的前缀

例如

./configure --prefix=/opt/nginx1.16

猜你喜欢

转载自blog.csdn.net/weixin_39849839/article/details/111166489