前言
本地服务器在我们的软件开发中也扮演着重要的作用,比如Unity项目中热更新就可以使用本地服务器进行调试。我们经常使用的就是nginx第三方工具。
1.下载
我们可以直接使用第三方的本地服务器工具来做测试,具体项目会有专门的服务器工程师来支持。我们在此使用的是nginx工具,它可以模拟网络资源上传下载的过程。
下载链接
下载完成后,文件目录如下

2.配置文件
找到文件"xxxxx\nginx-1.24.0\conf\nginx.conf",并用记事本打开,修改server层级中加入一段代码
location /tools
{
alias E:/Bundles;
allow all;
autoindex on;
}
“location /tools ”代表远程服务器访问的域名地址,可以自己随意修改;
“alias E:/Bundles; ”代表在本地服务器中作为资源托管的文件夹,文件夹也可以自己修改;
完整的“nginx.conf”文件如下:
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location /tools {
alias E:/Bundles;
allow all;
autoindex on;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
3.启动服务器
直接双击该目录下的"nginx.exe",即可启动nginx服务器。
在本地浏览器中输入地址:http://localhost/tools/,访问页面,出现如下页面表示启动成功。

总结
在使用时,如果不是本地访问可以将localhost改成本地网络IP。
本文介绍了如何在Unity项目中使用Nginx作为本地服务器进行热更新调试,包括下载Nginx、配置文件(添加location规则)和启动服务器的步骤。
1730

被折叠的 条评论
为什么被折叠?



